language: C (gcc-4.7.2)
date: 250 days 8 hours ago
link:
visibility: private
1
2
3
4
5
6
7
8
9
#include <stdio.h>
main()
{
int a, b ;
a = sizeof(unsigned char) ;
b = sizeof(unsigned short) ;
printf(" Size of:\nUnsigned Char = %d\nUnsigned Short = %d\n", a, b) ;
return 0 ;
}