Examveda

What will be the output of the following C++ code?
#include <iostream>
using namespace std;
class myclass
{
    public:
    int i;
    myclass *operator->()
    {return this;}
};
int main()
{
    myclass ob;
    ob->i = 10; 
    cout << ob.i << " " << ob->i;
    return 0;
}

A. 10 10

B. 11 11

C. error

D. runtime error

Answer: Option A


Join The Discussion

Related Questions on Classes and Objects in C plus plus