填空题 以下程序的运行结果是______。
#include "stdio.h"
main()
int a[]=8,2,9,4,1,*p;
p=a;
*(p+2)+=2;
printf("%d,%d",*p,*(p+2));

  • 1、
【正确答案】 1、8,11    
【答案解析】