您好,欢迎访问三七文档
当前位置:首页 > 建筑/环境 > 设计及方案 > C语言工程设计02_内存
1C语言工程设计杨志钢zgyang@hrbeu.edu.cn2内存划分3内存划分4内存划分5内存划分6内存划分7内存划分8内存划分9内存划分10内存的使用11内存的使用12内存的使用13内存的使用14内存的使用#includemalloc.hvoidmain(){int*p=(int*)malloc(40);sizeof(p)=?_msize(p)=?}440//查看申请空间的大小15内存的使用16内存的使用#includestdio.h#includestdlib.h#includestring.hintmain(){char*p=(char*)malloc(7);strcpy(p,1234567);printf(“%s\n”,p);//能否正确打印?free(p+1);//能否正确释放?return1;}17内存的使用#includestdio.h#includestdlib.h#includestring.hintmain(){char*p=(char*)malloc(8);strcpy(p,1234567);printf(“%s\n”,p);//能否正确打印?free(p);//能否正确释放?return1;}18内存的使用19内存相关库函数20内存相关库函数21内存相关库函数22内存使用注意事项23内存使用注意事项24内存使用注意事项死循环!icounta[0-4]count=4i=4count=5i=125内存使用注意事项26内存使用注意事项27内存使用注意事项28内存使用注意事项
本文标题:C语言工程设计02_内存
链接地址:https://www.777doc.com/doc-140715 .html