注意:此页面搜索的是所有试题
下面程序运行结果是_____。
void fun(int *x)
{ printf("%d\n",++*x); }
main()
{int a=25;fun(&a);}
A.23
B.24
C.25
D.26

参考答案