putchar - print character to standard output
Standard C Library (libc, -lc)
#include <stdio.h>
int
putchar(int chr);
putchar writes its argument character to standard output.
putchar returns chr. On error, EOF is returned, and errno is set according to the error encountered.
Any of the errors from write may occur.