7.19.7.9 The putchar function
Synopsis
#include <stdio.h>
int putchar(int c);
Description
The putchar function is equivalent to putc with the second argument stdout.
Returns
The putchar function returns the character written. If a write error occurs, the error indicator for the stream is set and putchar returns EOF.