putc()

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

Syntax
  #include <stdio.h>

  
  int putc(char ch, FILE *f);

  
Description

putc() is the same as fputc(), but may be implemented as a macro. Therefore, make sure that the expression f has no unexpected effects. See fputc() for more information.