-

Difference between revisions of "Functions HI-TECH C GETC"

From HI-TECH C for CP/M Fan WIKI(EN)
Jump to: navigation, search
(Created page with "<strong>GETC</strong> ==SYNOPSIS== #include <stdio.h> int getc(FILE * stream) FILE * stream; ==DESCRIPTION== One character is read from the specified stream and r...")
 
(No difference)

Latest revision as of 20:11, 31 July 2017

GETC

SYNOPSIS

#include  <stdio.h>

int getc(FILE * stream)
FILE * stream;


DESCRIPTION

One character is read from the specified stream and returned. EOF will be returned on end-of-file or error. This is the macro version of fgetc(), and is defined in stdio.h.