#include<stdio.h>void main(){ printf("Type int has a size of %u byte,",sizeof(int)); printf("Typelong has a size of %u byte,",sizeof(long));}