Question: What would the following code print? int intvar = 333; int* intptr; cout < < *intptr; A. 333 B. address where value 333 is saved
What would the following code print?
int intvar = 333;
int* intptr;
cout << *intptr;
A. 333
B. address where value 333 is saved
C. undefined; we don't know
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
