以下程序的功能是将文件stud_dat 中第i 个学生的姓名,,年龄,性别输出,请填 空使程序完整。 #include
struct student_type { char name[10] ; int num ; int age ; char sex ; } stud[10] ; void main ( ) { int i ; FILE ; if ((fp=fopen(“stud_data”,”rb”))==NULL { printf(“error!\n”); exit(0) ; } scanf(“%d”,&i); fseek( ); fread( ,sizeof(struct student_type),1,fp); printf(“%s%d%d%c\n”,stud[i].name,stud[i].num,stud[i].age,stud[i].sex); fclose(fp); }