通过海量题库、编程比赛和实时排名,系统化提升您的编程能力。
有以下程序:
#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); }
程序的运行结果是()。