填空题

以下程序运行后的输出结果是 【13】
#include <stdio, h> fun( int a)
int b = 0; static int c = 3;
b++;c++;
return(a + b + c);main( )
int i,a = 5;
for(i =0;i <3;i ++ ) prinff("% d% d" ,i,fun(a) );
printf(" \n" );

【参考答案】

010111212