赞题库-背景图
单项选择题

有以下程序:
#include <stdio.h>
main( )
{int a[]={2,4,6,8,10},x, *p,y=1;
P=&a[1];
for(x=0; x<3; x++) y+=*(p+x);
printf("%d\n",y);
}
程序的输出结果是______。

A.13
B.19
C.11
D.15