Answers

Question and Answer:

  Home  C++ References

⟩ 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

b) 10

 272 views

More Questions for you: