Files
RedBear-OS/tests/stdlib/atof.c
T
2019-02-20 19:27:18 +01:00

9 lines
126 B
C

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