c:io:fputc

C++ Reference

fputc

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.

Related Topics: fgetc, fopen, fprintf, fread, fwrite, getc, getchar, putc