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