单项选择题
有以下程序
#include
struct STU{char name[9];char sex;int score[2];};
void f(struct STU a[])
{struct STU b={"zhao",’m’,85,90};
a[1]=b;}
main()
{struct STU c[2]={{"Qian",’f’,95,92},{"Sun",’m’,98,99}};
fi[c);
printf("%s,%c,%d,%d,",c[0].name,c[0].sex,c[0].score[0],c[0].score[1]);
printf("%s,%c,%d,%d\n,",c[1].name,c[1].sex,c[1].score[0],e11].score[1]);
}
程序运行后输出结果是
A.Qian,f,95,92,Sun,m,98,99
B.Zhao,m,85,90,Sun,m,98,99
C.Qian,f,95,92,Zhao,m,85,90
D.Zhao,m,85,90,Qian,f,95,92