填空题

以下程序的输出结果是 【9】
void fun()
static int a;
a+=2;
printf("%d",A) ;
main()
int cc;
for(cc=1;cc<=4;cc++)fun();
printf("\n");

【参考答案】

2468