putc()

This is a file I/O function, also hardware dependent. It is not implemented in this 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, ensure that expression f has no side effects. See fputc() for more information.

Return
See also

fputc()