fclose()

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

Syntax
#include <stdio.h>

  
  int fclose(FILE *f);

  
Description

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

Return

Zero, if the function succeeds; EOF otherwise.

See also

fopen()