putchar - put byte on stdout stream
#include <stdio.h> int putchar(int c);
The function call putchar(c) is equivalent to putc(c, stdout).
Refer to fputc().
None.
putc(), <stdio.h>.
Derived from Issue 1 of the SVID.