问答题
#include int x=1; /* 全局变量 */ void f(int i) { x=i+x;i++; } void main( ) { int y=5; x++;f(y); printf("y=%d,x=%d\n",y,x); }
y=5,x=7