#include "header.h" int main(int argc, char ** argv) { double f, x; int i; clock_t t1, t2; /* Comment */ x = atof(argv[1]); t1 = clock(); f = fOne(x); t2 = clock(); /* printf("time in = %lf Seconds\n",0.000001*difftime(t2,t1)); */ printf("%lf\n",f); return 0; }