Open In App

C++ | Class and Object | Question 3

Last Updated : 28 Jun, 2021
Like Article
Like
Save
Share
Report




class Test {
    int x; 
};
int main()
{
  Test t;
  cout << t.x;
  return 0;
}


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


Answer: (C)

Explanation: In C++, the default access is private. Since x is a private member of Test, it is compiler error to access it outside the class.

Quiz of this Question


Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads