codecamp

free

 原型:extern void free(void *p);
 
 用法:#include <alloc.h>
 
 功能:释放指针p所指向的的内存空间。
 
 说明:p所指向的内存空间必须是用calloc,malloc,realloc所分配的内存。
       如果p为NULL或指向不存在的内存块则不做任何操作。
 
 举例:


     // free.c
     
     #include <syslib.h>
     #include <alloc.h>
     main()
     {
       char *p;
       
       clrscr();        // clear screen
       textmode(0x00);
       p=(char *)malloc(100);
       if(p)
         printf("Memory Allocated at: %x",p);
       else
         printf("Not Enough Memory!\n");
         
       getchar();
       free(p);         // release memory to reuse it
       p=(char *)calloc(100,1);
       if(p)
         printf("Memory Reallocated at: %x",p);
       else
         printf("Not Enough Memory!\n");
       free(p);         // release memory at program end
       
       getchar();
       return 0;
     }      


realloc
kbhit
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

alloi动态内存

stdio输入输出函数

stdlib基础库函数

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }