问答题

struct st
{int i;
int j;
}*p;
main()
{struct st m[]={{1,2},{5,10},{6,36}};
p=m;
printf("%d\n",++(++p)->j);
}

【参考答案】

11