fclose()

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

Syntax
  #include <stdlib.h>

  
  int fclose(FILE *f);

  
Description

fclose() closes file f. Before doing so, fclose() does the following:

Return

Zero, if the function succeeds; EOF otherwise.

See also

fopen()