What will be the output of the following C++ code?
#include <iostream>
#include <string>
#include <cstdlib>
using namespace std;
int main(int argc, char const *argv[])
{
int a = 5;
int &q = a;
cout<<&a<<endl;
cout<<&q<<endl;
return 0;
}
#include <iostream>
#include <string>
#include <cstdlib>
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: Option D

Join The Discussion