下列语句中,正确的是()。
A: char*myString=“Hello-World!”;
B: charmyString=“Hello-World!”;
C: charmyString[11]=“Hello-World!”;
D: charmyString[12]=“Hello-World!”;
A: char*myString=“Hello-World!”;
B: charmyString=“Hello-World!”;
C: charmyString[11]=“Hello-World!”;
D: charmyString[12]=“Hello-World!”;
举一反三
- 下列语句中,正确的是()。 A: char*myString=“Hello-World!”; B: charmyString=“Hello-World!”; C: charmyString[11]=“Hello-World!”; D: charmyString[12]=“Hello-World!”;
- 下列语句中,正确的是( ). A: char myString[ ]="Hello-World!"; B: char myString="Hello-World!"; C: char myString[11]="Hello-World!"; D: char myString[12]="Hello-World!";
- 下列语句中,正确的是( )。 A: char*myString="Hello-World!"; B: char myString="Hello-World!"; C: char myString[11]="Hello-World!"; D: char myString[12]="Hello-World!";
- 从字符串“hello-world”中获取world,以下哪个方法正确 A: substr("hello-world",6); B: substr("hello-world",6,5); C: substr("hello-world",-5,5); D: substr("hello-world",-5);
- 执行下列语句后的显示结果是( )world="world"print("hello"+world) A: helloword B: "hello"world C: hello world D: "hello"+world