文件的读取和输出
我E盘中有一个命名a的txt文件,为什么没有输出?#include <stdio.h>
int main()
{
FILE *fp;
int ch;
if(fp=fopen("e:\\a.txt","r")==NULL)
{
printf("fail");
return -1;
}
ch=fgetc(fp);
while(ch!=EOF)
{
putchar(ch);
ch=fgetc(fp);
}
fclose(fp);
putchar('\n');
return 0;
}