词条 | fputs |
释义 | 函数名: fputs 功 能:向指定的文件写入一个字符串(不写入字符串结束标记符‘\\0’)。成功写入一个字符串后,文件的位置指针会自动后移,函数返回值为0;否则返回EOR(符号常量,其值为-1)。 用 法: int fputs(char *string, FILE *stream); 参数: string是要写入文件的字符串。 stream 很明显是一个FILE对象。 程序例: #include <stdio.h> int main(void) { FILE *fpout=fopen("1.txt","wr");// /* write a string to standard output */ fputs("Hello world\", fpout); return 0; } |
随便看 |
百科全书收录4421916条中文百科知识,基本涵盖了大多数领域的百科知识,是一部内容开放、自由的电子版百科全书。