Open In App

C++ | Class and Object | Question 3




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

Article Tags :