Multiple Choice
A statement that displays the address of the variable num1 is
A) cout << num1;.
B) cout << *num1;.
C) cout << &(*num1) ;.
D) cout << &num1;.
E) None of the above
Correct Answer:

Verified
Correct Answer:
Verified
Related Questions
Q11: Suppose that a function dynamically allocates a
Q12: Which arithmetic operations can be performed on
Q13: The statement int *ptr; means<br>A) the variable
Q14: C++ does not perform array bounds checking.
Q15: An array name is a pointer constant
Q17: The expression *s->p; is only meaningful if
Q18: A pointer variable may be initialized with<br>A)
Q19: Which of the following statements correctly deletes
Q19: Which of the following statements correctly deletes
Q20: The code segment int *ptr; has the