高手帮忙看下简单程序
#include "stdio.h"main()
{
FILE *fp;
char ch;
if(fp=fopen("F:\\Win-TC\\projects\\string.txt","r+")==NULL)
{printf("cannot open");
getch();
exit(1);
}
ch=fgetc(fp);
while(ch!=EOF)
{putchar(ch);
ch=fgetc(fp);
}
fclose(fp);
getch();
}
屏幕上什么都显示,路径没错里面有个网址。