Revert "Add predictability in CType initialization."
[tinycc.git] / tests2 / 13_integer_literals.c
blob7cee98b1f1975f0733d9c761cd5b7b1633840dd9
1 #include <stdio.h>
3 int main()
5 int a = 24680;
6 int b = 01234567;
7 int c = 0x2468ac;
8 int d = 0x2468AC;
9 int e = 0b010101010101;
11 printf("%d\n", a);
12 printf("%d\n", b);
13 printf("%d\n", c);
14 printf("%d\n", d);
15 printf("%d\n", e);
17 return 0;
20 // vim: set expandtab ts=4 sw=3 sts=3 tw=80 :