putchar()

This is a file I/O function, also hardware dependent. It is not implemented in this Compiler.

Syntax
  #include <stdio.h>
  
  int putchar(char ch);

  
Description

putchar(ch) is the same as putc (ch, stdin). See fputc() for more information.

Return
See also

fputc()