给定,函数fun的功能是:将形参std所指结构体数组中年龄最大者的数据作为函数值返回,并在main函数中输出。 #include typedef struct { char name[10]; int age; }STD; STD fun(STD std[], int n) { STD max; int i; max= std[0]; for(i=1; i if(max.age return max; } main( ) { STD std[5]={"aaa",17,"bbb",16,"ccc",18,"ddd",17,"eee",15 }; STD max; max=fun(std,5); printf("\nThe result: \n"); /**********found**********/ printf("\nName : %s, Age : %d\n", ___3___,max.age); }