What is size of Empty Class?
Answers were Sorted based on User's Feedback
Answer / 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 |
Answer / saket kale
when i tried to calculate the size of an empty class that
time i found that it takes 1 byte.which is the size of a
char.That might be the memory taken by the compiler for
storing the address of a empty class.
| Is This Answer Correct ? | 2 Yes | 0 No |
How to reduce a final size of executable?
What do you mean by late binding?
Name four predefined macros.
What is #include ctype h in c++?
How do you traverse a btree in backward in-order?
What is the use of static functions?
What is multithreading and what is its use?Whats are multithreading techniques used in C++?
Can we inherit constructor in c++?
What is the operator in c++?
What happens if a pointer is deleted twice?
What programming language should I learn first?
What information can an exception contain?