Back To C++ Basic Index
//program to calculate size of a variable using sizeof operator #include
#include
void main() { int a=10; float pi=3.14; char ch='a'; double d=1.2345; clrscr(); cout<<"\nsize of an integer variable is "<