fputs()函数用于将字符串送入流中。
fputs()函数 语法
int fputs(char*s,FILE*p);
参数s为要输出的字符串;
参数p为要输出的流。fputs()函数写入成功时返回非负值;
若写入错误,则返回EOF。
fputs()函数 示例
本示例使用fputs函数将字符串”Good luck!”写入文件1.txt中,其具体代码如下所示:
#include<stdio.h>
int main(void)
{
FILE*p;
char s[]="Good luck!";/*定义字符串*/
p=fopen("1.txt","w");/*以写的方式打开文件*/
fputs(s,p);/*将字符串写入文件*/
fclose(p);/*关闭文件*/
return 0;
}
运行结果如图所示: