问题详情
有以下程序: #include <stdio.h> main() { int x=102,y=012; printf("%2d,%2d ",x,y); } 执行后的输出结果是()。
A.10,01
B.02,12
C.102,10
D.02,10
请帮忙给出正确答案和分析,谢谢!