以下程序的输出结果是________。 struct APPLE { int x,y;struct APPLE *p;}h[2]; main() {h[0].x=1.h[0].y=2; h[1].x=3;h[1].

admin2016-12-25  973

问题 以下程序的输出结果是________。
    struct APPLE
    {  int x,y;struct APPLE *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);}

选项

答案32

解析
转载请注明原文地址:https://www.kaotiyun.com/show/4VAx777K
0

最新回复(0)