A.1个Hello World
B.2个Hello World
C.3个Hello World
D.4个Hello World
[单选题]假设在turboc2.0采用small模式编译如下程序 main() { char a[4]={'a','b'}; char*b="abc"; printf("%d,%d",sizeof(A) ,sizeof(B) ); } 其输出结果为______。A.4,2B.4,4C.4,3D.2,2
[单选题]假设在turboc2.0采用small模式编译如下程序 main() { char a[4]= {'a','b'}; char *b="abc"; printf("%d,%d",sizeof(a),sizeof(b)); } 其输出结果为______。A.4,2B.4,4C.4,3D.2,2
[单选题]有以下程序:main{ char a=a,b;printf("%c,",++a);printf("%c\n",b=a++):)程序运行后的输出结果是( )。A.b,bB.b,cC.a,bD.a,c
[单选题]有以下程序 include main( ) { printf("%d/n",NULL); } 程序运行后的输出结果是有以下程序#include <stdio.h>main( ){ printf("%d/n",NULL); }程序运行后的输出结果是A.0B.1C.-1D.NULL没定义,出错
[单选题]有以下程序: main() { char s[]="/n123//"; printf("%d,%d/n",strlen(s),sizeof(s)); } 执行后输出结果是( )。A.赋初值的字符串有错B.6,7C.5,6D.6,6
[单选题]有以下程序main( ){ int a=666,b=888;printf("%d/n",a,b);}程序运行后的输出结果是A.错误信息B.666C.888D.666,888
[单选题]有以下程序: main() { int a=666, b=888; printf("% d/n", a, b); } 程序运行后的输出结果是______。A.错误信息B.666C.888D.666,888
[单选题]有以下程序:main(){ char s[]="/n123//"; printf("%d.%d/n",strlen(s),sizeof(s));}执行后输出结果是( )。A.赋初值的字符串有错 B.6,7 C.5,6 D.6,6
[单选题]有以下程序include main (){ printf("%d/n", NULL); }A.0B.1C.£1D.NULL没定义,出错有以下程序 #include <stdio .h> main () { printf("%d/n", NULL); }A.0B.1C.-1D.NULL没定义,出错
[单选题]有以下程序main(){ char s[]="/n123//";printf("%d,%d/n",strlen(s),sizeof(s));}执行后输出结果是A.赋初值的字符串有错B.6,7C.5,6D.6,6