[求助]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;
}