picoc/tests/35_sizeof.c

6 lines
107 B
C
Raw Normal View History

char a;
short b;
printf("%d %d\n", sizeof(char), sizeof(a));
printf("%d %d\n", sizeof(short), sizeof(b));