getc()

This is a file I/O function, also hardware dependent. It is not implemented in this Compiler.

Syntax

  #include <stdio.h>

  
  int getc(FILE *f);

  
Description

getc() is the same as fgetc(), but may be implemented as a macro. Therefore, ensure that expression f has no side effects.

Return
See also

fgetc()