有以下函数:#include <stdio.h> st

有以下函数:

#include <stdio.h>
struct stu
{
int num;
char name[10];
int age;
}voi; d fun(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);
}

程序运行后的输出结果是()。

答案
B

题目信息

题号:4633
题型:单选题
难度:普通