Multiple Choice
Which of the following statements deletes memory that has been dynamically allocated for an array?
A) int array = delete memory;
B) int delete[ ];
C) delete [] array;
D) new array = delete;
E) None of these
Correct Answer:

Verified
Correct Answer:
Verified
Related Questions
Q25: If a variable uses more than one
Q26: To help prevent memory leaks from occurring
Q27: The weak_ptr can share ownership of a
Q28: With pointer variables you can _ manipulate
Q29: The following statement _ cin >> *num3;<br>A)
Q31: What will the following code output?<br>Int *numbers
Q32: The _ and _ operators can be
Q33: The unique_ptr is the sole owner of
Q34: To use any of the smart pointers
Q35: A pointer variable is designed to store<br>A)