下面程序的输出结果是 #include<stdio.h> main() {int i=010,j=10; Printf(“%d,%d”,++i,j--); }
A.11,10
B.9,10
C.010,9
D.10,9