下列关于字符串使用正确的是()
A: char str[10]; str="Hello";
B: char *str; strcpy(str,"Hello");
C: char *str1,str[10]="Hello"; strcpy(str,str1);
D: char *str; str="Hello";
A: char str[10]; str="Hello";
B: char *str; strcpy(str,"Hello");
C: char *str1,str[10]="Hello"; strcpy(str,str1);
D: char *str; str="Hello";
举一反三
- 下面哪个选项不能将"hello"字符串存入字符数组str中( )。 A: char str[]="hello" ; B: char str[30]; strcpy(str, "hello"); C: char str[30];str="hello"; D: char str[30],*ps=str; strcpy(ps,"hello");
- 如何将字符串“Hello World”写入a.txt文件内?FILE *file; file = fopen("a.txt","w"); A: char str = "Hello World"; fputs(&str,file); B: char str = "Hello World"; fputc(&str,file); C: char str = "Hello World"; fput(&str,file); D: char str = "Hello World"; fputs(str,file);
- 1、下面正确的数组初始化语句是()。 A: char str[] = "hello"; B: char str[100] = "hello"; C: char str[] = {'h','e','l','l','o'}; D: char str[] = { 'hello' }
- 列不能正确进行字符串赋值操作的语句是 未知类型:{'options': ['char str[10];gets(str);', 'char *str;str="a"', "char*str;str='a';", 'charstr[10];strcpy(str,"hello");'], 'type': 102}
- 若有定义char str[8]; ,以下正确的语句是()。 A: str[8]= "Hello C"; B: str="Hello C"; C: str[]="Hello C"; D: strcpy(str,"Hello C");