C/C++内存问题检查利器—Purify(二)
北京火龙果软件工程技术中心(haoel原作)三、 示例假设我们现在有这样一段程序:hello.c#include#include staticchar*helloWorld="Hello,World"; main(){ char*mystr=malloc(strlen(helloWorld)); strncpy(mystr,helloWorld,12); printf("%s\n",mystr);} 很明显,这段程序中有内存上的错误,假设我们疏忽了这些错误,当我们使用Purify进行测试时,我们会发现这段程序中的内存错误在Puri
暂无评论