单项选择题

下述程序的输出结果是( )。
#include<stdio.h>
void main()
int a[5]=1,2,3,4,5;
int*p=a,**q=&p;
printf("%d",*(p++));
printf("%d",**q);

A.22
B.11
C.34
D.12