M7350/system/core/libacc/tests/data/double.c

8 lines
99 B
C
Raw Normal View History

2024-09-09 08:52:07 +00:00
double atof(char *nptr);
int main() {
printf("Value = %g\n", atof("10.42"));
return 0;
}