Files
RedBear-OS/tests/stdlib/atof.c
T
2018-07-22 11:24:50 +02:00

9 lines
144 B
C

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