下面程序Void prtv(int *x){ ++*x;Printf("%d\n",*x);}Main(){ int a=24;Prtv(&a);}的输出是______。
A.23
B.24
C.25
D.26
正确答案是C