以下程序的运行结果是( )
#include<stdio.h>
void main()
{
int a[10]={1,2,3,4,5,6,7,8,9,10},*p=&a[5],*q=p+2;
printf("%d\n",*p+*q);
}
14
15
8
9