summaryrefslogtreecommitdiff
path: root/05/main.c
diff options
context:
space:
mode:
Diffstat (limited to '05/main.c')
-rw-r--r--05/main.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/05/main.c b/05/main.c
index 6b7aac7..7b5789c 100644
--- a/05/main.c
+++ b/05/main.c
@@ -3,11 +3,11 @@
#include <string.h>
int main(void) {
- char s[] = " -0XAh.\n";
+ char *s = "1.35984534e135-e12hello";
char *end;
- errno = 0;
- printf("%ld\n", strtol(s, &end, 0));
- printf("%d:%s",errno,end);
+ _Float f = _powers_of_10[-307];
+ printf("%.15g\n",strtod(s, &end));
+ printf("%s\n",end);
return 0;
}