free

Example: freeMemory Allocation Functions

Frees a block of memory allocated on the memory heap by calloc or malloc.

void free( void *mem_address); 

mem_addressThe name of the block of memory (array) that is deleted.

Return Values

There is no return value.

For free details, refer to your C language documentation.