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