文件问题
#include<stdio.h>void main()
{
FILE *fp;
char ch;
if((fp=fopen("DONG.txt","r"))==NULL)
{
printf("file cannot be opened\n");
exit(1);//error C2065: 'exit' : undeclared identifier 问题出在这里,不知道为什么,大家帮忙看一下
}
while((ch=fgetc(fp))!=EOF)
fputc(ch,stdout);
fclose(fp);
}