00166.c (266B)
1 #include <stdio.h> 2 3 int main() 4 { 5 int a = 24680; 6 int b = 01234567; 7 int c = 0x2468ac; 8 int d = 0x2468AC; 9 10 printf("%d\n", a); 11 printf("%d\n", b); 12 printf("%d\n", c); 13 printf("%d\n", d); 14 15 return 0; 16 } 17 18 // vim: set expandtab ts=4 sw=3 sts=3 tw=80 :