赞题库-背景图
单项选择题

有以下程序:
#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);
}
程序的运行结果是______。

A.1,2
B.3,6
C.4,7
D.变量的地址值