Multiple Choice
The statement cin >> *p;
A) stores the keyboard input into the variable p.
B) stores the keyboard input into the pointer called p.
C) is illegal in C++.
D) stores the keyboard input into the variable pointed to by p.
E) None of the above
Correct Answer:

Verified
Correct Answer:
Verified
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
Q23: The statement shared_ptr<int> p(new int); involves<br>A) a
Q24: The expression s->m is meaningful only when
Q25: A temporary value in a program can
Q26: The set of operations supported by the
Q27: The term pointer can be used interchangeably