Important Questions

C++ Program to Find Size of int, float, double and char in Your System

//C++ Program to Find Size of int, float, double and char in Your System
//header files
#include<iostream.h>
#include<conio.h>

void main()
{

clrscr();
cout << "Size of char: " << sizeof(char) << " byte" << endl;
cout << "Size of int: " <<sizeof(int) << " bytes" << endl;
cout << "Size of float: " << sizeof(float) << " bytes" << endl;
cout << "Size of double: " << sizeof(double) << " bytes" << endl;
getch();

}

Output


You can also see a video how to run this program