Vidyalelo
C++ Programming · Q7

C++ miscellaneous

Programming · C++ Programming · question 7

Q7

What is the difference between 'delete' and 'delete[]' in C++?

A.
None of the above
B.
'delete' is used to deallocate memory allocated for an array of objects, while 'delete[]' is used to deallocate memory allocated for a single object
C.
They both have the same effect
D.
'delete' is used to deallocate memory allocated for a single object, while 'delete[]' is used to deallocate memory allocated for an array of objects
Answer

Answer: Option D

Solution

Answer: Option D
No explanation is given for this question Let's Discuss on Board