#include<iostream.h>
#include<conio.h>
void main()
{
int x;
float y;
double z;
char ch;
clrscr();
cout<<"Size of Integer Variable x: "<<sizeof(x)<<endl;
cout<<"Size of Float Variable y: "<<sizeof(y)<<endl;
cout<<"Size of Double Variable z: "<<sizeof(z)<<endl;
cout<<"Size of Character Variable Char: "<<sizeof(char)<<endl;
getch();
}