Sail E0 Webinar
Question


What is the output of this program?


1.
#include
2.
using namespace std;
3.
int main()
4.
{
5.
int x;
6.
int *p;
7.
x = 5;
8.
p = &x;
9.
cout
Options:
A .  5
B .  10
C .  memory address
D .  none of the mentioned
Answer: Option A

In this program, we are copying the memory location of x into p and then printing the value in 

the address.
Output:
$ g++ def1.cpp
$ a.out
5



Was this answer helpful ?
Next Question

Submit Solution

Your email address will not be published. Required fields are marked *

Latest Videos

Latest Test Papers