feof

Tests a file to see if the end-of-file has been reached.

Format

#include  <stdio.h>

int feof  (FILE *file_ptr);

Argument

file_ptr
A file pointer.

Return Values
nonzero integer  Indicates that the end-of-file has been reached. 
Indicates that the end-of-file has not been reached. 


Previous Page | Next Page | Table of Contents | Index