This is a File I/O function. It is not implemented in the Compiler.
#include <stdio.h>
int feof(FILE *f);
feof() tests whether previous I/O calls on file f tried to do anything beyond the end of the file.
Zero, if you are not at the end of the file; EOF otherwise.