填空题下面的程序用变量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); }