• 2021-04-14
    当字符数组str1的长度大于字符数组str2的长度时,字符串复制函数strcpy(str1,str2),可实现将str2所存储的字符串复制到str1中。
  • 内容

    • 0

      在下列语句中,正确的是 ( ) A: static char str[]="China"; B: static char str[];str="China"; C: static char str1[5],str2[]={"China"};str1=str2; D: static char str1[],str2[];str2={"China"};strcpy(str1,str2);

    • 1

      以下涉及字符串数组、字符指针的程序段,不会产生编译错误的是______。 A: char* str, name[10]; str = "Hello World"; B: char* str, name[10]; name = "Hello World"; C: char str1[10] = "prog.c", str2[10]; str2 = str1; D: char head_line[]; head_line = "=============";

    • 2

      下列函数中实现字符串比较的函数是( ) A: strlen(str) B: stcpy(str1,str2) C: stcmp(str1,str2) D: stcat(str1,str2)

    • 3

      以下涉及字符串数组、字符指针的程序段,没有编译错误的是( )。 A: char* str, name[5];str= "C/C++"; B: char* str, name[6];name = "Hello"; C: char str1[7]= "prog.c", str2[8];str2= str1; D: char line[];line = "//////";

    • 4

      以下涉及字符串数组、字符指针的程序片段,没有编译错误的是( )。 A: char line[]; line="============="; B: char* name[10], *str; name = "Hello World"; C: char str1[10],str2[10]= "prog.c"; str1 = str2; D: char name[10],*str = "Hello World";