有以下程序 #include<stdio.h> int fun() {static int x=1; x*=2; return x; } void main() {int i,s=1; for (i=1;i<=2;i++) s=fun(); printf("%d\n",s); } 执行后的输出结果是( )。
A.1 B.2 C.3 D.4正确答案D
有以下程序 #include<stdio.h> int fun() {static int x=1; x*=2; return x; } void main() {int i,s=1; for (i=1;i<=2;i++) s=fun(); printf("%d\n",s); } 执行后的输出结果是( )。
A.1 B.2 C.3 D.4正确答案D