![zik.saleeba](/assets/img/avatar_default.png)
git-svn-id: http://picoc.googlecode.com/svn/trunk@337 21eae674-98b7-11dd-bd71-f92a316d2d60
9 lines
108 B
C
9 lines
108 B
C
char a;
|
|
int b;
|
|
double c;
|
|
|
|
printf("%d\n", sizeof(a));
|
|
printf("%d\n", sizeof(b));
|
|
printf("%d\n", sizeof(c));
|
|
|