fputc()

This is a File I/O function. It is not implemented in the Compiler.

Syntax
  #include <stdio.h>

  
  int fputc(int ch, FILE *f);

  
Description

fputc() writes a character to file f.

Return

The integer value of ch. If an error occurs, fputc() returns EOF.

See also

fputs()