涉及知识点:数组,结构体和指针 分析以下程序的运行结果: #include "stdio.h" struct sp { int a; int *b; } *p ; int d[3]={10,20,30}; struct sp t[3]={70,&d[0],80,&d[1],90,&d[2]}; void main() { p=t; printf("%d%d\n",++(p->a),*++p->b); } 运行结果为:712