ciabatta/test/test_printf.c

14 lines
234 B
C
Raw Normal View History

2022-06-16 05:15:45 +00:00
#include <stdio.h>
#include <stdlib.h>
2022-07-17 19:43:41 +00:00
#include <limits.h>
2022-06-16 05:15:45 +00:00
int main() {
printf("%g\n", 0.0);
printf("%g\n", 0.00000031415);
printf("%g\n", 3.1415);
printf("%g\n", 31.415);
printf("%g\n", 314.15);
2022-06-16 05:15:45 +00:00
return 0;
}