Go to the first, previous, next, last section, table of contents.


getchar

Syntax

#include <stdio.h>

int getchar(void);

Description

The same as fgetc(stdin) (see section fgetc).

Return Value

The character, or EOF.

Portability

ANSI, POSIX


Go to the first, previous, next, last section, table of contents.