下列语句中,正确的是( ).
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!";
举一反三
- 下列语句中,正确的是( )。 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: 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!”;
- 如何将字符串“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);
- 以下程序段的输出结果是 。Char s[ ]=”Hello World!”;Strlwr(s);Printf(“%s”,s); A: hello world! B: HELLO world! C: hello WORLD! D: HELLO WORLD!