#include<stdio.h>
#include<conio.h>
void main()
{
int a;
float b;
char c;
double d;
clrscr();
printf("The size of a is %d bytes",sizeof(a));
printf("The size of a is %d bytes",sizeof(b));
printf("The size of a is %d bytes",sizeof(c));
printf("The size of a is %d bytes",sizeof(d));
getch();
}
#include<conio.h>
void main()
{
int a;
float b;
char c;
double d;
clrscr();
printf("The size of a is %d bytes",sizeof(a));
printf("The size of a is %d bytes",sizeof(b));
printf("The size of a is %d bytes",sizeof(c));
printf("The size of a is %d bytes",sizeof(d));
getch();
}