填空题

下面程序的运行结果是______。
#include<stdio.h>
main()
int a=25;
fun(&a);
fun(int *x)
printf("%d\n",++*x);

【参考答案】

Z