First page Back Continue Last page Graphics
Dynamic Array (delete)
delete [ ] my_array;
All the run time memory manager needs is the user name and the location. It can determine that from my_array and the call.
All memory for my_array is freed back to the rtmm.
You may reallocate it again and ACCIDENTLY get the exact same memory back again. But consider a delete a destroy!