Vidyalelo
C++ Programming · Q211

Classes and Objects in C++

Programming · C++ Programming · question 211

Q211

What will be the output of the following C++ code? #include using namespace std; class numbers private: int m_nValues[10]; public: int& operator[] (const int nValue); ; int& numbers::operator[](const int nValue) return m_nValues[nValue]; int main() numbers N; N[5] = 4; cout << N[5]; return 0;

A.
5
B.
4
Answer
C.
3
D.
6

Answer: Option B

Solution

Answer: Option B
No explanation is given for this question Let's Discuss on Board