#include char foo[80]; int bar[40]; float g=0.1; int main( int argc, char* argv[] ) { printf(" size of foo[] is %d\n", sizeof( foo ) ); printf(" size of bar[] is %d\n", sizeof( bar ) ); printf(" size of float g is %d\n", sizeof( g ) ); printf(" size of float is %d\n", sizeof( float ) ); return 0; }