7.29CopyFile.exe 中的 0x77597792 处最可能的异常: 0xC0000005: 写入位置 0x05f767c4 时发生访问冲突
FILE * fp;
int A[10];
char cpstr[20];
int i=0;
fp = fopen("D:\\nist-sts\\text.txt","r");
while(fgets(cpstr,10,fp))
{
A[i]=atoi(cpstr); i++;
}
CString str;
str.Format(L"%d",A[1]);
MessageBox(str);
fclose(fp);
return ;
执行后出现这样的错误,请问错在哪了?
7.29CopyFile.exe 中的 0x77597792 处最可能的异常: 0xC0000005: 写入位置 0x05f767c4 时发生访问冲突