问题
填空题
以下程序的运行结果是______。
#include<stdio.h>
main()
int fun(); fun();
fun()
static int a[3]=0, 1, 2;
int i;
for(i=0; i<3; i++)a[i]+=a[i];
for(i=0; i<3; i++)printf("%d, ", a[i]);
printf("\n");
答案
参考答案:0,2,4
解析: 本题主要考查for循环语句的使用以及静态局部变量的特点。