struct st
{int i;
int j;
}*p;
main()
{struct st.m[]={{10,1),{20,2},{30,3}},
p=m:
printf("%d\n",(*++p).j);
}
【正确答案】:2
struct st {int i; int j; }*p; main() {struct st.m[]={{10,1),{20,
- 2024-11-06 17:16:38
- 高级语言程序设计(13013)
- 1