填空题
以下程序运行后的输出结果是()。 main( ) {int a=1,b=3,c=5; if(c=a+b) printf(“yes”); else printf(“not”); }
yes
填空题 以下程序运行后的输出结果是()。 main( ) {char m; m=‘B’+32;printf(“%c”,m); }
填空题 以下程序运行后的输出结果是()。 main( ) {int a=010,b=2,c; c=a+b; printf(“%d”,c); }
填空题 设a为int变量,执行a=1/2+1/2;语句后,a的值为()