【简答题】以下程序的功能是将文件stud_dat 中第i 个学生的姓名,学号,年龄,性别输出,请填 空使程序完整。 #include struct student_type { char name[10] ; int num ; int age ; char ; } stud[10] ; void main ( ) { int i ; FILE ; if ((fp=fopen(“stud_data...
【简答题】以下程序的功能是:将文件 stud_dat 中第 i 个学生的姓名、学号、年龄、性别进行输出。请填空。 # include struct studcm_type { char name[10] ; int num ; int age ; char ; } stud[10] ; int main( ) { int i ; FILE( ( ) ) ; if( (fp=fopen("st...