C memory management library

From Cppreference

Jump to: navigation, search

[edit] Functions

Defined in header <cstdlib>
malloc
allocates memory
(function)
calloc
allocates and zeroes memory
(function)
realloc
expands previously allocated memory block
(function)
free
deallocates previously allocated memory
(function)