如何将字符串“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);
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);
举一反三
- 11字符串测试1:下列字符串定义正确的是: A: String str="Hello World!"; B: Str str="Hello World!"; C: var str="Hello World!"; D: var str='Hello World!';
- 已知$str = " Hello World! ";下列说法正确的是: A: trim($str)结果是" Hello World!"; B: ltrim($str)结果是"Hello World! "; C: trim($str)结果是" Hello World!"; D: trim($str)结果是"Hello World!";
- 下面哪个选项不能将"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");
- 下列关于字符串使用正确的是() 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";
- 下列定义字符串类string对象的语句中,错误的是( )。 A: string str; B: string str( “Hello, world” ); C: string str = “Hello, world”; D: string str = ‘Hello, world’;