单项选择题

以下程序的输出结果是______。
int i=010,j=10;
printf("%d,%d\n",++i,j--);

A.11,10
B.9,10
C.10,10
D.10,9