2.12.5.9 putchar

Declaration:

int putchar(int char);

Writes a character (an unsigned char) specified by the argument char to stdout.

On success the character is returned. If an error occurs, the error indicator for the stream is set and EOF is returned.