以下程序的输出结果是______。 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.12B.23C.14D.32

题目

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


相似考题
更多“以下程序的输出结果是______。struct HAR{int x,y;struct HAR *p;}h[2]main(){h[0].x=1;h[0].y=2 ”相关问题
  • 第1题:

    以下程序的输出结果是______。 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->y); printf("%d%d\n",(h[0].p)->x,(h[1].p)->y); }

    A.12

    B.23

    C.14

    D.32


    正确答案:D
    解析:本题中是一个结点的循环链表。C语言中结构体的定义为:struet结构体类型名{成员项表;};

  • 第2题:

    以下程序的输出结果是( ) 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

  • 第3题:

    有以下程序:include void f(int * x,int * y) int t;t= *x; *x= *y; *y=t;main ( ){in

    有以下程序:#include <stdio.h>void f(int * x,int * y) int t; t= *x; *x= *y; *y=t;main ( ){ int a[8] = { 1,2,3,4,5,6,7,8} ,i, * p, * q; p=a;q =&a[7]; while(p<q) { f(p,q) ;p ++ ;q --; } for(i =0;i<8;i ++ ) printf(" % d," ,a[i]); }程序运行后的输出结果是( )。

    A.8,2,3,4.,5,6,7,1,

    B.5,6,7,8,1,2,3,4,

    C.1,2,3,4,5,6,7,8,

    D.8,7,6,5,4,3,2,1,


    正确答案:D
    解析:程序中函数f的作用是交换指针变量x和y所指向的存储单元的值。在main函数中,通过P=a;q=&a[7];指针变量p指向数组的第一个元素,指针变量q指向数组的最后一个元素。通过调用函数f(p,q)进行前后对称位置上的数组元素的交换。当while循环4次(即p=q)后,a数组中各元素的值分别为8,7,6,5,4,3,2,1,所以程序输出的结果为:8,7,6,5,4,3,2,1,

  • 第4题:

    以下程序的输出结果是()。includedefine F(x)2.84+xdefine w(y)printf("%d",(int)(y)

    以下程序的输出结果是( )。 #include<stdio.h> #define F(x)2.84+x #define w(y)printf("%d",(int)(y)) #define P(y)w(y) main() {int x=2; P(F(5)*x); }

    A.12

    B.13

    C.14

    D.16


    正确答案:A

  • 第5题:

    以下程序的输出结果是______。 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
    解析:本题中是一个含有两个结点的循环链表。C语言中结构体的定义为:struct结构体类型名{成员项表;};