选择题 36.  有以下程序:
    #include<stdio.h>
    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}};
    f(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[O],e[1]. score[1]);
    }
    程序运行后的输出结果是______。
【正确答案】 C
【答案解析】 在主函数中,定义了结构体STU数组c[2],并对其赋初始值。执行f(c)时,在函数f()中,把结构体变量b的值赋给了c[1]。