Q. The following program segment in C++
Code:const int m =10; int &n = m; n=11; count << m << n;
β
Correct Answer: (A)
Compile time error
const int m =10; int &n = m; n=11; count << m << n;
You must be Logged in to update hint/solution