[ create a new paste ] login | about

Link: http://codepad.org/hW92RusA    [ raw code | output | fork ]

C, pasted on Apr 8:
1
2
3
4
5
void main() {
printf("%d", sizeof(short int));
printf("\r%d", sizeof(int));
printf("\r%d", sizeof(long int));
printf("\r%d", sizeof(long long)); }


Output:
1
2
3
4
2
4
4
8


Create a new paste based on this one


Comments: