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
}