有以下程序: 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',2041),b={'WangYin',2043}; f1(a);f2(&b); printf(“%d%d\n”,a.num,b.num); ) 执行后输出结果是( )。