STREC stu[M]=f"GA05",85,"GA03",76, "GA02",69),"GA04",85,"GA01",91, "GA07",72),"GA08",64,"GA06",87, "GA09",60,"GA11",79),("GA12",73, "GA10",90; STREC h[M]; int i,n; double ave; ave=proc(stu,h,&n); printf("The%d student data which is higher than %7.3f:\n",n,ave); for(i=0;i<n;i++) printf("%s%4.1f\n",h[i].num,h[i].s); printf("\n");
【参考答案】
double proc(STREC*a,STREC*b,int*n) { int i; d......