问题
单项选择题
有以下程序
#include<stdio.h>
#include<string.h>
typedef structchar 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
解析: 本题中printf输出的还是c中实参的值,故选项A正确。