码迷,mamicode.com
首页 > 其他好文 > 详细

free函数

时间:2014-08-29 18:04:38      阅读:161      评论:0      收藏:0      [点我收藏+]

标签:style   io   strong   ar   for   div   sp   on   size   

free函数
原型: 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;
}

free函数

标签:style   io   strong   ar   for   div   sp   on   size   

原文地址:http://www.cnblogs.com/getyoulove/p/3945219.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!