以下程序段中,不能正确赋字符串的是____ A: chars[10]=”abcdefg” B: chart[]=”abcdefg”,*s=t; C: chars[10];s=”abcdefg”; D: chars[10];strcpy(s,”abcdefg”);
以下程序段中,不能正确赋字符串的是____ A: chars[10]=”abcdefg” B: chart[]=”abcdefg”,*s=t; C: chars[10];s=”abcdefg”; D: chars[10];strcpy(s,”abcdefg”);
字符串替换: echo substr_replace("abcdefg", "OK", 3)."";//abdOK echo substr_replace("abcdefg", "OK", 3,3)."";//abcOKg echo substr_replace("abcdefg", "OK", -2,3)."";//abcdeOK echo substr_replace("abcdefg", "OK", 3,-2)."";//abcOKfg echo substr_replace("abcdefg", "OK", 2,0)."";//abOKcdefg 编辑代码,并输出运行结果
字符串替换: echo substr_replace("abcdefg", "OK", 3)."";//abdOK echo substr_replace("abcdefg", "OK", 3,3)."";//abcOKg echo substr_replace("abcdefg", "OK", -2,3)."";//abcdeOK echo substr_replace("abcdefg", "OK", 3,-2)."";//abcOKfg echo substr_replace("abcdefg", "OK", 2,0)."";//abOKcdefg 编辑代码,并输出运行结果
以下程序段中,不能正确赋字符串(编译时系统会提示错误)的是( ) A: char s[10]; s = "abcdefg"; B: char s[10] = "abcdefg"; C: char s[10]; strcpy (s, "abcdefg"); D: char t[ ] = "abcdefg", *s = t;
以下程序段中,不能正确赋字符串(编译时系统会提示错误)的是( ) A: char s[10]; s = "abcdefg"; B: char s[10] = "abcdefg"; C: char s[10]; strcpy (s, "abcdefg"); D: char t[ ] = "abcdefg", *s = t;
以下程序段中,可以正确赋字符串(编译时系统不会提示错误)的是( )。 A: char s[10]="abcdefg"; B: char t[]="abcdefg",*s=t; C: char s[10]; s="abcdefg"; D: char s[10]; strcpy(s,"abcdefg");
以下程序段中,可以正确赋字符串(编译时系统不会提示错误)的是( )。 A: char s[10]="abcdefg"; B: char t[]="abcdefg",*s=t; C: char s[10]; s="abcdefg"; D: char s[10]; strcpy(s,"abcdefg");
以下程序段中,不能正确赋字符串(编译时系统会提示错误)的是______。 A: char<br/>s[10];strcpy(s,"abcdefg"); B: char<br/>s[10];s="abcdefg"; C: char<br/>s[10]="abcdefg"; D: char<br/>t[]="abcdefg",*s=t;
以下程序段中,不能正确赋字符串(编译时系统会提示错误)的是______。 A: char<br/>s[10];strcpy(s,"abcdefg"); B: char<br/>s[10];s="abcdefg"; C: char<br/>s[10]="abcdefg"; D: char<br/>t[]="abcdefg",*s=t;
以下程序段中,不能正确赋字符串(编译时系统会提示错误)的是( )。 A: chars[10]="abcdefg"; B: chars[10];s="abcdefg"; C: chars[10];strcpy(s,"abcdefg");
以下程序段中,不能正确赋字符串(编译时系统会提示错误)的是( )。 A: chars[10]="abcdefg"; B: chars[10];s="abcdefg"; C: chars[10];strcpy(s,"abcdefg");
有以下程序 #include void main( ) { char c; for (; ( c=getchar()) != '#'; ) { if ( c>='a' && c<='z' ) c = c - 'a' + 'A'; putchar(++c); } } 执行时输入:aBcDefG#, 则输出结果是_______。
有以下程序 #include void main( ) { char c; for (; ( c=getchar()) != '#'; ) { if ( c>='a' && c<='z' ) c = c - 'a' + 'A'; putchar(++c); } } 执行时输入:aBcDefG#, 则输出结果是_______。
以下程序段中,不能正确赋字符串(编译时系统会提示错误)的是( ) A: char s[10];s="abcdefg"; B: char s[10]="abcdefg"; C: char t[]="abcdefg",*s=t;
以下程序段中,不能正确赋字符串(编译时系统会提示错误)的是( ) A: char s[10];s="abcdefg"; B: char s[10]="abcdefg"; C: char t[]="abcdefg",*s=t;
下列代码的运行结果为()。var str='abcdefg'; console.log(str.substr(1,4)); A: abc B: bcde C: abcdefg D: abcd
下列代码的运行结果为()。var str='abcdefg'; console.log(str.substr(1,4)); A: abc B: bcde C: abcdefg D: abcd
表达式 'abc' in ('abcdefg') 的值为______________。
表达式 'abc' in ('abcdefg') 的值为______________。