找考题网-背景图
填空题

下面的程序用变量count统计文件letter.dat中字符的个数。请写出程序的横线处应该填入的内容。() 
#include 
main( ) 
{   FILE *fp; 
long count=0; 
if((fp=fopen((“letter.dat”,       ))==NULL){
     printf((“Cannot open file!\n”);
     exit(0); 
} 
while(!feof(fp)){
           ;
      count++; } 
printf((“count=%d\n”,count);
fclose(fp); 
}

【参考答案】

“r”;fgetc(fp)
热门试题