以下程序的输出结果是( )。 #include struct st {int x;int*y;}*p; int dt[4]={1,2,3,4}; struct st aa[4]={2,&dt[0],3,&dt[

admin2021-06-15  34

问题 以下程序的输出结果是(    )。
    #include
    struct st
    {int x;int*y;}*p;
    int dt[4]={1,2,3,4};
    struct st aa[4]={2,&dt[0],3,&dt[0],4,&dt[0],5,&dt[0],};
    main()
    {p=aa;
    printf("%d\n",++(p->x));
    }

选项 A、1
B、2
C、3
D、4

答案C

解析 程序首先将指针p指向结构体数组aa的首地址,通过p->x引用了结构体数组aa[0]的第一个成员2;++(p->x)是将p->x的值加1,所以输出结果为3。
转载请注明原文地址:https://jikaoti.com/ti/XLz0FFFM
0

相关试题推荐
最新回复(0)