找考题网-背景图
问答题

下面程序的输出结果是:
fun3(int x)
{static int a=3;
a+=x;
return(a);}
main()
{int k=2,m=1,n;
n=fun3(k);
n=fun3(m);
printf("%d\n",n);)

【参考答案】

6