What is output of this program?

#include <iostream>
using namespace std;
int main()
{
int a = 9;
int & aref = a;
a++;
cout << "The value of a is " << aref;
return 0;
}
a) 9
b) 10
c) error
d) 11

Submitted by: Administrator
b) 10
Submitted by:

Read Online C++ References Job Interview Questions And Answers