以字符不敏感方式计算字符在文件中出现的次数出错

时间:2015-05-04 12:56:16

标签: c file-io char scanf fgetc

请告诉我下面的代码有什么问题。执行后显示

  

“test.txt有0个字母'r'实例”

`#include<stdio.h>
#include<stdlib.h>
#include<ctype.h>
int main()
{
  FILE *fp;
  char ch,cmp;
  char f[100];
  int count=0,tu1,tu2;
  printf("Enter the file name\n");
  scanf("%s",f);
  fp=fopen(f,"r");
  printf("Enter the character to be counted\n");
  scanf("%c",&ch);
  tu1=toupper((int)ch);
  while((cmp=fgetc(fp))!=EOF)
  {
    tu2=toupper((int)cmp);
    if(tu1==tu2)
    {
      count++;
    }
  }
  fclose(fp);
  printf("\nFile \'%s\' has %d instances of letter \'%c\'",f,count,ch);
  return 0;
}` 

1 个答案:

答案 0 :(得分:2)

第1点

在使用返回的文件指针之前,请务必检查fopen()的成功。在此(下面)代码行之后为fp添加NULL检查。如果为NULL,则停止程序

 fp=fopen(f,"r");

第2点

更改

scanf("%c",&ch);

scanf(" %c",&ch); // mind the ' ' before c

以避免按上一个ENTER键存储的尾随换行符(\n)。

第3点

根据fgetc()的{​​{3}},返回类型为int。将cmp的数据类型从char更改为int

注意:

  1. main()的推荐签名为int main(void)
  2. 初始化局部变量始终是一个很好的实践。