putchar()

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

Syntax
  #include <stdio.h>

  
  int putchar(char ch);

  
Description

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