问题 填空题

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

答案

参考答案:H,AA

单项选择题
单项选择题