单项选择题

有以下程序:
#include<stdio.h>
int a=1;
int fun(int c)
static int a=2;
c=c+1;
return(a++)+c;
main()
int i,k=0;
for(i=0;i<2;i++)int a=3;k+=f(

A.;