Multiple Choice
What is the output of the following code?
int *p;
Int x;
x = 12;
p = &x;
cout << x << ",";
*p = 81;
Cout << *p << endl;
A) 12, 12
B) 12, 81
C) 81, 12
D) 81, 81
Correct Answer:

Verified
Correct Answer:
Verified
Related Questions
Q3: Which of the following operations is allowed
Q5: The _ operator can be used to
Q17: Consider the following statements:<br>void pointerParameters(int* &p,double *q)<br>{<br>.<br>.<br>.<br>}<br>In
Q21: What is the value of x after
Q22: A memory leak is an unused memory
Q22: What is the output of the following
Q23: If p is a pointer variable, the
Q24: Which of the following arithmetic operations is
Q25: An array created during the execution of
Q28: A list is a collection of elements