|
feoffunction
<cstdio> int feof ( FILE * stream ); Check End-of-File indicator Checks whether the End-of-File indicator associated with stream is set, returning a value different from zero if it is.This indicator is generally set by a previous operation on the stream that reached the End-of-File. Further operations on the stream once the End-of-File has been reached will fail until either rewind, fseek or fsetpos is successfully called to set the position indicator to a new value. Parameters
Return ValueA non-zero value is returned in the case that the End-of-File indicator associated with the stream is set.Otherwise, a zero value is returned. Example
This code opens the file called myfile.txt, and counts the number of characters that it contains by reading all of them one by one. Finaly the total amount of bytes is printed out. See also
|