下列程序的输出结果是______。
Main()

下列程序的输出结果是______。
Main()
{ char a[10]={9,8,7,6,5,4,3,2,1,0},*p=a+5;
Printf("%d",*--p);
}

A.非法

B.a[4]的地址

C.5

D.3

正确答案是C