Vidyalelo
C++ Programming · Q51

Pointers and References in C++

Programming · C++ Programming · question 51

Q51

What will be the output of the following C++ code? #include #include #include using namespace std; int main(int argc, char const *argv[]) int a = 5; int &q = a; cout<<&a<<endl; cout<<&q<<endl; return 0;

A.
5
5
B.
Address of p followed by 5 in next line
C.
5 followed by Address of a in next line
D.
Address of a followed by Address of a in next line
Answer

Answer: Option D

Solution

Answer: Option D
No explanation is given for this question Let's Discuss on Board