标题:debug asertion failed 是什么意思?
取消只看楼主
yalewang
Rank: 2
等 级:论坛游民
帖 子:125
专家分:35
注 册:2010-4-15
结帖率:94.74%
 问题点数:0 回复次数:0 
debug asertion failed 是什么意思?
作了一个读取动态增加的.CSV的文件,调试没有错误,可运行提示debug asertion failed 百思不得其解,求高手指点。
代码如下:
void CMyView::OnFileRead()
{
   FILE *pFile=fopen("E:\aaa.csv","r");
    if((pFile==NULL))
    {
     printf("can't open the file");
     //exit(0);
    }

   char *pBuf;
   fseek(pFile,24,SEEK_END);//指针移到倒数第24个字符
   fread(pBuf,1,10,pFile);//从倒数第24个字符读到倒数第14个字符(读取10个)
   fclose(pFile);
   MessageBox(pBuf);
   // TODO: Add your command handler code here
   
}
搜索更多相关主题的帖子: asertion debug failed 
2010-06-23 13:43



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-311028-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.459580 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved