...

/

Deallocation of Dynamic Memory

Deallocation of Dynamic Memory

Get acquainted with the deallocation of dynamic memory.

We'll cover the following...

Introduction

The compiler automatically deallocates the static space when it is not used anymore. Since dynamically allocated memory is managed by a programmer, when dynamically allocated space is not required anymore, we must free it.

delete

...