设有如下形式的字符数组定义:char str[]=”welc...rcpy(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");
- 中国大学MOOC: 设有如下形式的字符数组定义:char str[]=”welcome”;则执行下列语句后的输出结果( )。printf(“%d\n”,strlen(strcpy(str,“Hello”)));
- 设有如下形式的字符数组定义:char str[]=”welcome”;则执行下列语句后的输出结果( )。 printf(“%d ”,strlen(strcpy(str,“Hello”))); A: 7 B: 5 C: 8 D: 9
- 1、下面正确的数组初始化语句是()。 A: char str[] = "hello"; B: char str[100] = "hello"; C: char str[] = {'h','e','l','l','o'}; D: char str[] = { 'hello' }
- 下列初始化字符数组的语句,正确的是( )。 A: char[100] str = ""; B: char[5] str = {"hi"}; C: char[5] str = "hello"; D: char[] str = {'h', 'e', 'l', 'l', 'o'};