

MCQOPTIONS
Saved Bookmarks
1. |
In C++, which of the following statements correctly returns the memory from the dynamic array pointer pp to the free store? |
A. | delete pp [ ]; |
B. | delete *pp; |
C. | delete [ ]pp ; |
D. | delete pp; |
Answer» D. delete pp; | |