#include <stdio.h> int putchar(int c);
This is the same as fputc(c, stdout). See section fputc.
fputc(c, stdout)
The character written.
ANSI, POSIX
while ((c = getchar()) != EOF) putchar(c);
Go to the first, previous, next, last section, table of contents.