free(C语言提供的库函式)

生活百科 2023-01-26 08:58生活百科www.aizhengw.cn

free(C语言提供的库函式)

原型: void free(void ptr)
功 能: 释放ptr指向的存储空间。被释放的空间通常被送入可用存储区池,以后可在调用malloc、realloc以及calloc函式来再分配。
程式例:
#include <string.h>
#include <stdio.h>
#include <malloc.h>
#include <stdlib.h>
int main(void)
{
char str;
/ allocate memory for string /
str = (char )malloc(10);
if(str == NULL){
perror("malloc");
exit(1);
}
/ copy "Hello" to string /
strcpy(str, "Hello");
/ display string /
printf("String is %s\n", str);
/ free memory /
free(str);
return 0;
}

Copyright@2015-2025 www.aizhengw.cn 癌症网版板所有