std::fputc, std::putc
From cppreference.com
Defined in header <cstdio>
|
||
int fputc( int ch, FILE *stream ); int putc( int ch, FILE *stream ); |
||
Writes a character ch
to the given output stream stream
. putc() function may be implemented as a macro.
Parameters
ch | - | character to be written |
stream | - | the output stream |
Return value
ch
on success, EOF on failure.
See also
C documentation for fputc, putc
|