Open In App

C++ | new and delete | Question 3

Like Article
Like
Save
Share
Report

Predict the output?




#include <iostream>
using namespace std;
  
class Test 
{
  int x;
  Test() { x = 5;}
};
  
int main()
{
   Test *t = new Test;
   cout << t->x;
}


(A) Compiler Error
(B) 5
(C) Garbage Value
(D) 0


Answer: (A)

Explanation: There is compiler error: Test::Test() is private.

new makes call to the constructor. In class Test, constructor is private (note that default access is private 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