android_system_core/libacc/tests/data/double.c
2009-07-06 12:07:15 -07:00

7 lines
99 B
C

double atof(char *nptr);
int main() {
printf("Value = %g\n", atof("10.42"));
return 0;
}