ciabatta/test/test_printf.c

11 lines
157 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() {
2022-07-17 19:43:41 +00:00
int w = printf("%- 16.8da\n", INT_MIN);
printf("%d\n", w);
2022-06-16 05:15:45 +00:00
return 0;
}