// =========================== // compile on the command line with // gcc basics5.c -o basics5 // =========================== #include int main(){ // data type sizes // Use the 'sizeof' function printf("char: %d\n",sizeof(char)); printf("int: %d\n",sizeof(int)); return 0; }