c语言参数传递和返回值及变量存储
unsigned int n;void f1();int f2(int,int);void far f3();main(){ n=0; f1(); n=f2(1,2); f3();}void f1(
c语言参数传递和返回值及变量存储