Q. Following declaration in C++
Code:
int x ; int &p = x; is same as the declaration int x, *p; p =&x;
β
Correct Answer: (B)
false
int x ; int &p = x; is same as the declaration int x, *p; p =&x;
You must be Logged in to update hint/solution