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