当前位置: 代码迷 >> C语言 >> 文件内容输不出。。
  详细解决方案

文件内容输不出。。

热度:103   发布时间:2007-08-26 18:30:53.0
文件内容输不出。。

以下是我程序输出文件内容的部分,但内容输不出,有找不到错在哪里,下面的有错吗?谢谢了。
fp=fopen("d:\\score_data.txt","w");
if((fp=fopen("d:\\score_data.txt","w"))==NULL)
{
printf("Cannot open this file\n");
exit(0);
}
ch=getc(fp);
while(!feof(fp))
{ putchar(ch); ch=getc(fp);}
fclose(fp);
文件里的内容是:
sport_score!!!
item1 item2 item3 item4
rank1: 1 2 5 3

rank2: 5 3 1 4

rank3: 4 1 3 2
请指教!!!

搜索更多相关的解决方案: 文件  

----------------解决方案--------------------------------------------------------
  相关解决方案