填空题

下列程序的输出结果是______.
#include <stdio.h>
fun ()
static int a=O;
a+=3; printf("%d",a);

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

【参考答案】

3 6 9 12