有以下程序 #include stmct stu {int num;char name[10];int age;}; voidfun(struct stu*p) {printf(“%s\n”,P->name);)

admin2012-05-23  30

问题 有以下程序
    #include
    stmct stu
    {int num;char name[10];int age;};
    voidfun(struct stu*p)
    {printf(“%s\n”,P->name);)
    main()
    {struct stu x[3]={{01,“Zhang”,20},{02,“Wang”,19),{03,“Zhao”,18});
    fun(x+2);
    }
    程序运行后的输出结果是

选项 A、Zhang
B、Wang
C、Zhao
D、19

答案C

解析 本题考查结构体变量成员的引用,x+2指向结构体数组x[2],在fun函数中输出其name成员,即“zhao”。
转载请注明原文地址:https://jikaoti.com/ti/eEB0FFFM
0

随机试题
最新回复(0)