【单选题】有以下程序: struct STU( char name[10]; int hum; }; void f1(struct STU c) {struct STU b={“LiSiGuo”,2042}; c=b; } void f2(struct STU*C) } {struct STU b={“SunDan”,2044}; *c=b; ) main() {struct STU a={“YangSan...
【单选题】有以下程序: struct STU{ char name[10]; int num; }; void f1(struct STU c) { struct STU b={'LiSiGuo',2042); c=b; } void f2(struct STU *c) { struct STU b={'SunDan',2044); *c=b; } main() {struct STU a={'YangSa...
【单选题】有以下程序#include struct STU{ int num float TotalScore }void f(struct STU p){ struct STU s[2]={{1047,530},{1048,531}} p.num = s[1].num p.TotalScore = s[1].TotalScore}main(){ struct STU s[2]={{2041,730},{2...
【简答题】有以下程序: Struct STU{ char name[10]; int num; }, void fl(struct STU C) {struct STU b={'LiSiGuo',2042}; c=b; ) void f2(struct STU*c) {struct STU b={'SunDan',2044l; *c=b; ) main() {struct STU a={'YangSan',...