0
what is the size of an empty class ?
2 Answers
+ 2
class doesn't have any size until its object is created class is just a blue print
+ 2
... and to add to Zeeshans answer: if you instantiate an empty class, the object created will take at least one byte as per C++ standard.