下面程序运行结果是_____。
void fun(int *x)
{ printf("%d\n",++*x); }
main()
{int a=25;fun(&a);}
A.23
B.24
C.25
D.26
出自:安阳师范学院-计算机基础与程序设计