#include <stdio.h>
int main(){
FILE* f1=fopen("a.txt","r");
if(f1==NULL){
perror("Error opening file");
}
int a=fgetc(f1);
int b=getc(f1);
printf("%c,%c",a,b);
}
int main(){
FILE* f1=fopen("a.txt","r");
if(f1==NULL){
perror("Error opening file");
}
int a=fgetc(f1);
int b=getc(f1);
printf("%c,%c",a,b);
}

2009

被折叠的 条评论
为什么被折叠?



