#include<stdio.h> int main(){ short int a; int b; long int c; long long int d; printf("The size of short is %d bytes.\n",sizeof(a)); printf("The size of int is %d bytes.\n",sizeof(b)); printf("The size of long is %d bytes.\n",sizeof(c)); printf("The size of long long is %d bytes.\n",sizeof(d)); }