• 2021-04-14
    下面的程序用变量count统计文件中小写字母的个数。
    #include
    #include
    int main(void)
    {  FILE *fp; char a;
    int count=0;
    if((fp=fopen("d:letter.txt",【  】))==NULL)
    {  printf("can not open file ");
    exit(0);}
    while(!feof(fp))
    {    【     】
    if(【      】) count++;
    }
    fclose(fp);
    printf("字符个数是:%d ",count);
    return 0;
    }
    【】中应依次填入(   )。
  • 举一反三