单项选择题

下列程序的输出结果是( )。
#inelude <stdio.h>
main()
int a[5]=2,4,6,8,10,*p,**k;
p=a; k=&p;
printf("%d",*(p++));
printf("%d\n",**k);

A.4
B.22
C.24
D.46