Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

What is size of Empty Class?

Answer Posted / amit basak

The size of the class will be 1 byte as mentioned by Rahul...
Here is the below code in Cygwin ...

// This program is to find the size of empty class

#include<iostream>

using namespace std;

class Demo
{

};

int main ()
{
cout <<"Sizeof Demo class is ="<<sizeof(Demo)<<endl;

return(0);
}


And here is the output..
$ ./a.exe
Sizeof Demo class is =1

Is This Answer Correct ?    14 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is the equivalent of Pascal's Real a) unsigned int b) float c) char

1063


Write a program using GUI concept for the scheduling algorithms in Operating system like SJF,FCFS etc..

3897


How do you write a function that can reverse a linked-list?

1172


If there are two catch statements, one for base and one for derived, which should come first?

1081


Write a struct time where integer m, h, s are its members?

1018


Is string an object in c++?

1212


What is the best ide for c++?

1150


what is the difference between overloading & overriding? give example.

1271


What is a map in c++?

1294


Write a program which uses Command Line Arguments

1237


Inline parameters : What does the compiler do with the parameters of inline function, that can be evaluated in runtime ?

2590


What is singleton pattern in c++?

1050


Why do we use vector in c++?

1125


What is the iunknown interface?

1184


Is there finally in c++?

1150