getc()

This is a File I/O function. It is not implemented in the Compiler.

Syntax
  #include <stdio.h>

  
  int getc(FILE *f);

  
Description

getc() is the same as fgetc(), but may be implemented as a macro. Therefore, make sure that f is not an expression having side effects. See fgetc() for more information.