中国大学MOOC: 若有定义:char strl[20]=a good , str2[ ]=student; 以下能将字符串str1变为a good student的语句是( )。
举一反三
- 若有定义:char strl[20]="a good ", str2[ ]="student"; 以下能将字符串str1变为"a good student"的语句是( )。 A: strcat(str1, str2); B: strcpy(str1, str2); C: str1 = str1 + str2; D: str1 = str1 & str2;
- 若有定义:char strl[20]="a good ", str2[ ]="student"; 以下能将字符串str1变为"a good student"的语句是( )。 A: strcat(str1, str2); B: strcpy(str1, str2); C: str1 = str1 + str2; D: str1 = str1 & str2;
- 以下不能正确进行字符串赋初值的语句是( )。 A、char str[5]= "good!"; B、char *str="good!"; C、char str[]="good!"; D、char str[5]={'g', 'o','o', 'd'}; A: char *str="good!"; B: char str[5]={'g', 'o','o', 'd'}; C: char str[]="good!"; D: char str[5]= "good!";
- ( )不能对字符串赋初值.A) char str[5]="good!"; B) char str[]="good!";C) char *str="good!"; D) char str[ ]={‘g',‘o',‘o',‘d',‘!',‘\0'}; A: char str[5]="good!"; B: char str[]="good!"; C: char *str="good!"; D: char str[ ]={‘g',‘o',‘o',‘d',‘!',‘\0'};
- 若有定义char str[]= “very good”, 则str的长度为( )