有以下程序,其中k的初值为八进制数
#inculde <stdio.h>
Main()
{ int k=011;
PrintFF(“%d\n”,k++);
}
程序运行后的输出结果是
A.12
B.11
C.10
D.9
请帮忙给出正确答案和分析,谢谢!