Solved

What Will the Following Code Output

Question 11

Multiple Choice

What will the following code output?
Int number = 22;
Int *var = &number;
Cout << *var << endl;


A) the address of number
B) 22
C) an asterisk followed by 22
D) an asterisk followed by the address of number

Correct Answer:

verifed

Verified

Unlock this answer now
Get Access to more Verified Answers free of charge

Related Questions