原 型:void free (void *ptr);
头 文 件:stdlib.h
说 明:释放地址为ptr的内存块(除非ptr为空指针时调用无效)。块必须通过calloc函数、malloc函数或realloc函数进行分配。
返 回 值:无。
相关函数:calloc、malloc、realloc