Studytonight
729 subscribers
96 photos
1 video
1 file
203 links
Best place to learn and Practise Coding. All for Free. https://www.studytonight.com/

Get the latest updates on:
✔️Latest Tutorials
✔️Trending Topics
✔️Courses
✔️And more!!
Download Telegram
‼️C++ Interview Question‼️

The following program fragment __________.
#include <iostream>
using namespace std;

int main()
{
int x = 10;
int &p = x;
cout<< &p<< &x;
return 0;
}

A. prints 10 and the address of x
B. results in a runtime error
C. prints the address of x twice
D.prints the address of p twice

Check out the solution and other question here :
https://www.studytonight.com/cpp/tests/8