What will be the output of the following C++ code?
#include <iostream>
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;
}
#include <iostream>
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
C. 3
D. 6
Answer: Option B

Join The Discussion