填空题

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

【参考答案】

2 4 6 8