free
From cppreference.com
| Defined in header <stdlib.h>
|
||
| void free( void* ptr ); |
||
Deallocates the space previously allocated by malloc(), calloc() or realloc().
Parameters
| ptr | - | pointer to the memory to deallocate |
Return value
(none)
See also
| C++ documentation for free
|