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 benefit of learning c++?

938


What is meaning of in c++?

1162


Which is better c++ or java?

937


Explain the difference between c & c++?

1027


Is java made in c++?

1010


How do you add an element to a set in c++?

945


Explain the differences between list x; & list x();.

968


daily Routine of father

1363


Can a program run without main in c++?

1142


How is modularity introduced in C++?

1161


Which is better turbo c++ or dev c++?

1015


List different attributes in C++?

1026


Refer to a name of class or function that is defined within a namespace?

1063


Write a program for Divide a number with 2 and Print the output ( NOTE: Check for divide by zero error).

1073


How to declare a function pointer?

962