1 2 3 4 5 6 7
double atof(char *nptr); int main() { printf("Value = %g\n", atof("10.42")); return 0; }