基本介紹
- 中文名:free()
- 屬性:C語言函式
- 頭檔案:malloc.h或stdlib.h
- 作用:釋放記憶體空間
簡介
程式例:
#include <string.h>#include <stdio.h>#include <alloc.h> //or #include <malloc.h>int main(void){char *str;/* allocate memory for string */str = (char *)malloc(10);/* copy "Hello" to string */strcpy(str, "Hello");/* display string */printf("String is %s\n", str);/* free memory */free(str);str=NULL;return 0;}