单项选择题

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

A、3
B、4
C、a[4]的地址
D、非法