fputs() STDIO fputs() Write string into file stream #include <stdio.h> void fputs(string, fp) char *string; FILE *fp; fputs writes string into the file stream pointed to by fp. Unlike its cousin puts, it does not append a newline character to the end of string. fputs returns nothing. ***** Example ***** For an example of this function, see the entry for freopen. ***** See Also ***** puts(), STDIO COHERENT Lexicon Page 1