单项选择题

以下程序的输出结果是______。 sub(int x,int*y) {*y=*y-x;} main() { inta=1,b=2; sub(a,&B) ;sub(b,&A) ; printf("%d,%d\n",a,B) ; }

A.1,0
B.1,2
C.0,1
D.2,1