Files
RedBear-OS/tests/stdlib/atof.c
T

9 lines
137 B
C

#include <stdlib.h>
#include <stdio.h>
int main(void) {
double d = atof("-3.14");
printf("%f\n", d);
return EXIT_SUCCESS;
}