通过海量题库、编程比赛和实时排名,系统化提升您的编程能力。
下面程序的输出结果应该是( )。
void prtv(int *x) { printf("%d\n",++*x); } void main() { int a=25; prtv(&a); }