Saved Bookmarks
| 1. |
What is the difference between delete and delete[]? |
|
Answer» Delete[] is used to release the array allocated memory which was allocated using new[] and delete is used to release one chunk of memory which was allocated using new. |
|