/* Comparing the size of the different data types * CISC105 * 07.11.2005 * sizeof.c */ #include int main() { int a; char b; float c; double d; printf("The size of is %d bytes.\n", sizeof( a ) ); printf("The size of is %d bytes.\n", sizeof( b ) ); printf("The size of is %d bytes.\n", sizeof( c ) ); printf("The size of is %d bytes.\n", sizeof( d ) ); }