单项选择题

以下程序的输出的结果是
int x=3;
main()
int i;
for (i=1;i<x;i++) incre();

incre()
staic int x=1;
x*=x+1;
printf(" %d",x);

A.3 3
B.22
C.26
D.25