单选题 下列程序的输出结果是______。
main()
int i;
for(i=0;i<2;i++)
add();

add()
int x=0;
static int y=0;
printf("%d,%d/n",x,y);
x++;y=y+2;


【正确答案】 B
【答案解析】