单项选择题

以下程序的输出结果是______。
int f()
static int i=0;
int s=1;
s+=i; i++;
return s;
main()
int i, a=0;
for(i=0; i<5; i++)
a+=f();
printf("% d\n" ,

A.;