请告诉我下面的代码有什么问题。执行后显示
“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;
}`
答案 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
。
注意:
main()
的推荐签名为int main(void)