一起答
主观

#include

int fun(int m)

{

  static int n=1;

  ++m; ++n;

  return(m+n);

}

void main()

{

  int a,b;

  a=fun(0); b=fun(10);

  printf("a=%d,b=%d\n", a,b);

}

试题出自试卷《高级语言程序设计(一)2012年10月真题及答案解析》
参考答案
查看试卷详情