C++ Programming/Code/Standard C Library/Functions/fputc

From Wikibooks, open books for an open world
Jump to navigation Jump to search

fputc[edit | edit source]

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