填空题
以下程序段的输出结果是()。 char s[]= “\\140\140abc\t”; prntf(“%d\n”,strlen(s));
9
填空题 以下程序运行后的输出结果是()。 main( ) {int a=1,b=3,c=5; if(c=a+b) printf(“yes”); else printf(“not”); }
填空题 以下程序运行后的输出结果是()。 main( ) {char m; m=‘B’+32;printf(“%c”,m); }
填空题 以下程序运行后的输出结果是()。 main( ) {int a=010,b=2,c; c=a+b; printf(“%d”,c); }