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);
仅供参考
你这个程序不能用fscanf()函数读取文件数据,只能用fread()函数来读!