#include <stdlib.h>
void free (void *ptr);
void free
The free function causes the space pointed to by ptr to be deallocated that is, made available for further allocation.
The free function returns no value.
None