[填空題] 以下程序用來統(tǒng)計文件字符的個數(shù),請?zhí)羁铡? #include<stdio.h> #include<string> void main() FI
2021-07-20
[填空題] 以下程序用來統(tǒng)計文件字符的個數(shù),請?zhí)羁铡?/p>
#include<stdio.h>
#include<string>
void main()
FILE *fp;long num=0;
if ((fp=fopen("fname.dat"," r"))==NULL)
printf("Open error");
exit(0),
while(______)
fgetc(fp);num++;
printf("num=%1d",num-1);
fclose(fp);
正確答案:fgetc(fp)!=EOF或!feof(fp)
詞條內(nèi)容僅供參考,如果您需要解決具體問題
(尤其在法律、醫(yī)學(xué)等領(lǐng)域),建議您咨詢相關(guān)領(lǐng)域?qū)I(yè)人士。