单选题 以下程序的输出结果是______。
#include<stdio.h>
main()
{int x[]={10,20,30,40,50,60},*p=x;
*(p+4)+=6;
printf("%d,%d",*p,*(p+4));
}
【正确答案】 B
【答案解析】