填空题

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

【参考答案】

246