• 2022-06-29 问题

    表达式'abcdefg'[20:]的值为空字符串。

    表达式'abcdefg'[20:]的值为空字符串。

  • 2022-07-26 问题

    有定义char s[] = "abcdefg",那么sizeof(s)的值是

    有定义char s[] = "abcdefg",那么sizeof(s)的值是

  • 2022-06-12 问题

    下面程序运行的结果是( )。void main() {char s[]="abcdefg"; s[4]=0; puts(s); } A: abcdefg B: abcde C: abcd D: abc

    下面程序运行的结果是( )。void main() {char s[]="abcdefg"; s[4]=0; puts(s); } A: abcdefg B: abcde C: abcd D: abc

  • 2022-06-12 问题

    下面程序运行的结果是( )。 void main() {char s[]="abcdefg"; s[4]=0; puts(s); }

    下面程序运行的结果是( )。 void main() {char s[]="abcdefg"; s[4]=0; puts(s); }

  • 2022-06-12 问题

    已知一棵二叉树的前序遍历序列是ABCDEFG,中序遍历序列是CBEDAFG,则该二叉树的后遍历序列是[_________] A: CEDBGFA B: CDEBGFA C: CEDBFGA D: ABCDEFG

    已知一棵二叉树的前序遍历序列是ABCDEFG,中序遍历序列是CBEDAFG,则该二叉树的后遍历序列是[_________] A: CEDBGFA B: CDEBGFA C: CEDBFGA D: ABCDEFG

  • 2022-05-26 问题

    以下程序段的执行结果是____。char a[]="abcdefg",*p;p=a;*(p+3)+=2;printf("ch=%c\n",*(p+5));

    以下程序段的执行结果是____。char a[]="abcdefg",*p;p=a;*(p+3)+=2;printf("ch=%c\n",*(p+5));

  • 2022-06-12 问题

    若有char s[10 ]="abcdefg"; 则数组 s 所占的字节数是( )。 A: 7 B: 10 C: 11 D: 8

    若有char s[10 ]="abcdefg"; 则数组 s 所占的字节数是( )。 A: 7 B: 10 C: 11 D: 8

  • 2022-06-15 问题

    以下程序段中,不能正确赋字符串的是____ 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”);

  • 2022-06-06 问题

    字符串替换: 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 编辑代码,并输出运行结果

  • 2022-11-03 问题

    以下程序段中,不能正确赋字符串(编译时系统会提示错误)的是( ) 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;

  • 1 2 3 4 5 6 7 8 9 10