#includetypedef struct Struct { int num; char name[20]; float score; }student; int main(void) { student stu[5]={{10101,"Zhang",78},{10103,"Wang",98.5},{10106,"Li",86},{10108,"Ling",73.5},{10110,"Sun",100}}; student temp; const int n=5; int i,j,k; printf("The order is:n"); for(i=0;i stu[k].score) k=j; } temp = stu[k]; stu[k]=stu[i]; stu[i]=temp; } for(i=0;i



