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
Attention reader! Don’t stop learning now. Get hold of all the important C++ Foundation and STL concepts with the C++ Foundation and STL courses at a student-friendly price and become industry ready.