Jump to content

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

From Wikibooks, open books for an open world

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