首页 试题广场 > 试题详情
单选题

有以下程序
#include <stdio.h>
#include <string.h>
typedef struct { char name[9]; char sex; float score[2]; } STU;
void f(STU A)
{
STU b={"Zhao", 'm', 85.0, 90.0};
int i;
strcpy(a.name, b.name);
a.sex = b.sex;
for (i=0; i<2; i++)
a.score[i] = b.score[i];
}
main()
{
STU c={"Qian", 'f', 95.0, 92.0};
f(c);
printf("%s,%c,%2.0f,%2.0f\n", c.name, c.sex, c.score[0], c.score[1]);
}
程序的运行结果是

  • A.Zhao,m,85,90
  • B.Qian,m,85,90
  • C.Zhao,f,95,92
  • D.Qian,f,95,92
提交并查看答案
下一题 上一题
Ke星伙伴们的回答/ 2个回答
  • null008 1楼

    ******
    发表时间:2016-04-26 15:08:30

  • S倔强 2楼

    ******
    发表时间:2016-09-08 14:04:22

贡献榜
相关试题
关闭
关闭
QQ
交流群
邀请
好友
App
下载
意见
反馈
返回
顶部