请问以下程序运行后的输出结果是 #include<stdio.h> main() {int x=011; printf("%d",++x);} }
请问以下程序运行后的输出结果是 #include<stdio.h> main() {int x=011; printf("%d",++x);} }
日期:2012-08-14 19:05:38 人气:3
x=011 八进制 转成10进制 1*8+1=9
开始 x=9
++x=10
所以结果就是10
请问以下程序运行后的输出结果是 #include<stdio.h> main() {int x=011; printf("%d",++x);} }