填空题

以下程序的输出结果是______。
void fun( )
static int a=0;
a+=2;printf("%d",a);

main( )
int cc;
for(cc=1;cc<4;cc++)fun( );
printf("\n");

【参考答案】

2 4 6