void ReadFile(int *key){
int i ,flag ,j;
*key = 0;
char fileName[20];
for(i=0; i<60; i++){
binary[i].ch = '\0';
binary[i].num = 0;
}
printf("\n\t\t\t请输入文件名:");
scanf("%s", fileName);
FILE *fp = fopen(fileName,"r+");
if(fp == NULL){
perror("打开文件失败啦");
//printf("文件打开失败!\n");
exit(1);
}
fgets(text, MAX, fp);
printf("\n\t\t\t%s\n\n", text);
for(i=0; i<MAX; i++){
if(text[i] == '\0'){
textLen = i;
break;
}
}
for(i=0; i<textLen; i++, flag=0){
for(j=0; j<(*key); j++){
if(binary[j].ch == text[i]){
binary[j].num++;
flag = 1;
}
}
if(flag == 0){
binary[*key].ch = text[i];
binary[*key].num += 1;
(*key)++;
}
}
printf("\t\t\t文件共有%d种字符,文件总字符数为%d", *key, textLen);
fclose(fp);
}
在判断fp == null的时候直接返回
用 perror()返回No such file or directory
求大佬讲解一下该怎么办