以下程序的输出结果是______。<br class="markdown_return">Struct HAR<br class

分类: C语言开发工程师 发布时间: 2023-11-03 11:13 浏览量: 0

以下程序的输出结果是______。
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);
}

A.12

B.23

C.14

D.32

正确答案是D