有两个函数 fun1()和fun2()定义如下,在主函数中有:intx=1;x=fun1(x);调用,此时x的值为
>int fun1(int x){ x++; fun2(x); return x; } Void fun2(int x){ x++; }
1
2
3
4