给定程序通过定义并赋初值的方式,利用结构体变量存储了一名学生的、姓名和3门课的成绩。函数fun的功能是将该学生的各科成绩都乘以一个系数a。 #include typedef struct { int num; char name[9]; float score[3]; }STU; void show(STU tt) { int i; printf("%d %s : ",tt.num,tt.name); for(i=0; i<3; i++) printf("%5.1f",tt.score[i]); printf("\n"); } void modify(STU *ss,float a) { int i; for(i=0; i<3; i++) /**********found**********/ ss->______ *=a; } main( ) { STU std={ 1,"Zhanghua",76.5,78.0,82.0 }; float a; printf("\nThe original number and name and scores :\n"); show(std); printf("\nInput a number : "); scanf("%f",&a); modify(&std,a); printf("\nA result of modifying :\n"); show(std); } A. i B. score[i] C. score[j] D. n