单项选择题

下面程序的输出结果是______。
main()
int a[10]=0,1,2,3,4,5,6,7,8,9,*p=a+4;
printf("%d\n",p[3]);

A.6
B.7
C.3
D.5