以下程序运行后的输出结果是________。
void main()
{ int a[10]={1,2,3,4,5,6,7,8,9,10},*p=&a[3],*q=p+2;
   printf("%d\n",*p+*q);
}
A 16
B 10
C 8
D 6