Open In App

C++ | Class and Object | Question 2

Like Article
Like
Save
Share
Report

Predict the output of following C++ program




#include<iostream>
using namespace std;
   
class Empty {};
   
int main()
{
  cout << sizeof(Empty);
  return 0;
}


(A) A non-zero value
(B) 0
(C) Compiler Error
(D) Runtime Error


Answer: (A)

Explanation: See Why is the size of an empty class not zero in C++

Quiz of this Question


Last Updated : 28 Jun, 2021
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads