M7350/system/core/libacc/tests/data/double.c
2024-09-09 08:52:07 +00:00

8 lines
99 B
C

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