单项选择题

有以下程序:
main()

int i=10,j=1;
printf("%d,%d\n",i--,++j);

执行后输出结果是( )。

A.9,2
B.10,2
C.9,1
D.10,1