What is the output 
    #include <iostream>
    using namespace std;
    int main()
    {
        int g = 8;
        int & aref = g;
        g++;
        cout << "Value is:  " << aref;
        return 0;
    }

Posted on by