Jan

17

#include<stdio.h>
void main(){
int num=10;
char ch=’a’;
short int sh=20;
printf(“%d”,sizeof(num));
printf(“\n%d”,sizeof(ch));
printf(“\n%d”,sizeof(sh));
getch();
}


Leave a Reply

Filled Under: C Programming