/ 知识库     / 试卷库

考研2023年暨南大学( )

结构体各个成员变量之间的地址都是相同的。

考研2000年四川大学( )

分析下面程序的运行结果:

#include <stdin.h>

struct m{

int x;

int *y;

}*p;

int a[4]={12,33,-40,100};

struct m b[4]={10,&a[2],9,&a[3],8,&a[0],7,&a[1]};

main(){

p=b;

printf("%d\n",++p->x);

printf("%d\n",(++p)->x);

printf("%d\n",++(*p->y));

}

11

9

101