以下程序的输出结果#include<stdio.h> main() { int i=010,j=10; printf("%d,%d\n",++i,j--);
以下程序的输出结果#include<stdio.h> main() { int i=010,j=10; printf("%d,%d\n",++i,j--);
日期:2018-02-28 14:10:26 人气:2
#include main() { int i=010,j=10; printf("%d,%d\n",++i,j--); //i=010八进制8 所以++i输出是9 j--先输出j再--,所以输出10}9,10Press any key to continue