free()
Published Aug 18, 2022
Contribute to Docs
The free()
function is used to dynamically de-allocate the memory at runtime. Memory allocated by the malloc()
and calloc()
functions must be manually de-allocated when not in use. Freeing it helps to reduce memory wastage.
Syntax
free(memoryblock);
The memoryblock
must exist beforehand in order to be de-allocated by the free()
function.
Example
The following example showcases the free()
function:
int *ptr;// Memory allocated using malloc() functionptr = (int*) malloc(5 * sizeof(int));// Memory de-allocated using free() functionfree(ptr);
Contribute to Docs
- Learn more about how to get involved.
- Edit this page on GitHub to fix an error or make an improvement.
- Submit feedback to let us know how we can improve Docs.