中国大学MOOC: 给出以下定义,则正确的叙述是char a[ ]= “helloworld”;char b[ ]={ ‘h’, ‘e’, ‘l’, ‘l’, ‘o’, ‘w’,’o’, ‘r’ ,’l’,’d’};
举一反三
- 给出以下定义,则正确的叙述是: char s1[]="hello world!"; char s2[]={'h','e','l','l','o',' ','w','o','r','l','d','!'};
- 中国大学MOOC: 设有数组定义:char a[]=student;char b[]=[s,t,u,d,e,n,t];则以下叙述正确的是()。
- 以下对字符数组str初始化不等价的是( )。 A: char str[ ]="hello"; B: char str[ ]={'h','e','l','l','o','\0'}; C: char str[ ]={'h','e','l','l','o',0}; D: char str[ ]={'h','e','l','l','o'};
- String s=new String(“hello”); String t =new String(“hello”); char c [ ] ={‘h’,’e’,’l’,’l’,’o’}; 下列哪些表达式返回true ?
- 字符串""可以用字符数组来定义,如字符串“hello”可以用字符数组定义为以下哪种形式 A: char a[6]={‘h’,‘e’,‘l’,‘l’,‘o’,‘\0’}; B: char a[5]={‘h’,‘e’,‘l’,‘l’,‘o’}; C: char a[6]= {“hello”}; D: char a[5]= {“hello”};