[求助]c--free的使用方法?
谁有c--free的使用说明?----------------解决方案--------------------------------------------------------
函数名: free
功 能: 释放由malloc()和alloc()分配的内存
用 法: void free(void *ptr); ptr 被释放的指针
程序例:
#include <string.h>
#include <stdio.h>
#include <alloc.h>
int main(void)
{
char *str;
/* allocate memory for string */
str = malloc(10);
/* copy "Hello" to string */
strcpy(str, "Hello");
/* display string */
printf("String is %s\n", str);
/* free memory */
free(str);
return 0;
}
----------------解决方案--------------------------------------------------------
帮助菜单
里面介绍的很详细
----------------解决方案--------------------------------------------------------
中文的怎么还不会用呢?
----------------解决方案--------------------------------------------------------