题目内容
以下程序的输出结果是( )。#include struct HAR{ int x,y;struct HAR *p;}h[2];int 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);return 0;}
查看答案
搜索结果不匹配?点我反馈