问题 更新时间2023/4/3 12:59:00 请阅读分析下列程序,然后写出程序的运行结果。void main(void){int a[ ]={1,2,3,4,5,6},*p;p=a;p+ +;*(p+3)+=2;printf("%d\n",*p);printf("%d\n",*(p+3);} 答案 登录 注册 2,7 出自:联大 >> 安阳师范学院计算机基础与程序设计