#include<stdio.h>
#include<math.h>
int main(int argc, char **argv){
// read in the command-line argument
double x,c;
double epsilon = 1e-15; // relative error tolerance
double t ; // estimate of the square root of c
//scanf("%lf",&t);
t=**argv-'0';
printf("%lf ",t);
c=t;
// repeatedly apply Newton update step until desired precision is achieved
while (fabs(t - c/t) > epsilon*t) {
t = (c/t + t) / 2.0;
}
// print out the estimate of the square root of c
printf("%lf",t);
return 0;
}
このプログラムでは、コマンド ライン引数を指定して実行したいと考えています。どうやってやるの?