lang-bootstrap/05/main.c

14 lines
233 B
C
Raw Normal View History

2022-02-14 22:43:25 -05:00
#define _STDLIB_DEBUG
#include <stdio.h>
#include <string.h>
2022-02-13 12:51:21 -05:00
2022-02-14 16:52:33 -05:00
int main(void) {
2022-02-15 12:16:21 -05:00
char *s = "1.35984534e135-e12hello";
2022-02-14 22:43:25 -05:00
char *end;
2022-02-15 12:16:21 -05:00
_Float f = _powers_of_10[-307];
printf("%.15g\n",strtod(s, &end));
printf("%s\n",end);
return 0;
2022-02-09 22:44:27 -05:00
}
2022-02-12 21:27:57 -05:00