问题 更新时间2024/11/14 10:10:00 #include<stdio.h> struct Worker { char name[15]; //姓名 int age; //年龄 float pay; //工资 }; void main() { struct Worker x={"wanghua",52,4300}; struct Worker y, *p; y=x; p=&x; printf("%s %d %6.2f",x.name,y.age,p->pay); }(简答题){} 答案 登录 注册 .wanghua 52 4300 出自:国家开放大学 >> 2024年国家开放大学答案