C++ Programming/Code/Standard C Library/Functions/fputc
< C++ Programming < Code < Standard C Library < Functionsfputc
Syntax |
#include <cstdio>
int fputc( int ch, FILE *stream );
|
The function fputc() writes the given character ch to the given output stream. The return value is the character, unless there is an error, in which case the return value is EOF.
This article is issued from Wikibooks. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.