C++ Programming/Code/Standard C Library/Functions/fputs
< C++ Programming < Code < Standard C Library < Functionsfputs
Syntax |
#include <cstdio>
int fputs( const char *str, FILE *stream );
|
The fputs() function writes an array of characters pointed to by str to the given output stream. The return value is non-negative on success, and EOF on failure.
This article is issued from Wikibooks. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.