This is a file I/O function, also hardware dependent. It is not implemented in this Compiler.
#include <stdio.h>
int putchar(char ch);
putchar(ch) is the same as putc (ch, stdin). See fputc() for more information.
fputc()