问答题

以下程序的输出结果是______。
struct HAR
int x,y;struct HAR *p; h[2];
main()
h[0].x=1;h[0].y=2;
h[1].x=3;h[1].y=4;
h[0].p=&h[1];h[1].p=h;
printf("%d%d\n",(h[0].p)->x,(h[1].p)->y);

【参考答案】

D