C stdio fputs() 函数
示例
将字符串写入文件
FILE *fptr;
// 以写入模式打开文件
fptr = fopen("filename.txt", "w");
// 将字符串写入文件
fputs("Hello World!", fptr);
fclose(fptr);
定义和用法
The fputs()
函数将字符串写入文件。
The fputs()
函数在 <stdio.h>
头文件中定义。
语法
fputs(const char * str, FILE * fptr);
参数值
参数 | 描述 |
---|---|
str | 必需。包含要写入的字符串的 char 数组。 |
fptr | 必需。文件指针,通常由 fopen() 函数创建。 |
技术细节
返回值 | 如果函数成功,则返回一个非负的 int 值。如果发生错误,则返回常量 EOF 。 |
---|