C语言如何用fscanf读取以下fwrite函数保存的文件?追加50分。

2025-04-05 06:30:51
推荐回答(2个)
回答1:

FILE *fp;
int i=0;

fp=open("student.dat","r");
while(fscanf(fp," %s %s %d %f %f %f\n",Student[i].stuId,Student[i].stuName,&Student[i].stuSex,&Student[i].scoreCh,&Student[i].scoreMath,&Student[i].scoreEn)!=EOF)
{
i++;
}
fclose(fp);
仅供参考

回答2:

你这个程序不能用fscanf()函数读取文件数据,只能用fread()函数来读!