有以下程序:#include<stdio.h> str

有以下程序:

#include<stdio.h>
struct S{int a;int *b;};
main()
{
int x1[] = {3,4},x2[] = {6,7};
struct S x[] = {1,x1,2,x2};
printf("%d,%d\n",*x[0].b,*x[1].b);
}

程序的运行结果是()。

答案
B

题目信息

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