2024-06-24程序A将五个学生的信息(姓名、性别、分数)存入文件Stu_data中 程序B从文件中读取并排序 按成绩由高到低输出 首先打开文件并存入信息;#include<stdio.h>#defineNUM5typedefstructstudent{ charname[100]; charsex; floatscore;}stu;intmain(){ FILE*fp=NULL; if((NULL==(fp=fopen("stu_data","w")))){ perror("fopen");retur