Maple Professional
Maple Academic
Maple Student Edition
Maple Personal Edition
Maple Player
Maple Player for iPad
MapleSim Professional
MapleSim Academic
Maple T.A. - Testing & Assessment
Maple T.A. MAA Placement Test Suite
Möbius - Online Courseware
Machine Design / Industrial Automation
Aerospace
Vehicle Engineering
Robotics
Power Industries
System Simulation and Analysis
Model development for HIL
Plant Modeling for Control Design
Robotics/Motion Control/Mechatronics
Other Application Areas
Mathematics Education
Engineering Education
High Schools & Two-Year Colleges
Testing & Assessment
Students
Financial Modeling
Operations Research
High Performance Computing
Physics
Live Webinars
Recorded Webinars
Upcoming Events
MaplePrimes
Maplesoft Blog
Maplesoft Membership
Maple Ambassador Program
MapleCloud
Technical Whitepapers
E-Mail Newsletters
Maple Books
Math Matters
Application Center
MapleSim Model Gallery
User Case Studies
Exploring Engineering Fundamentals
Teaching Concepts with Maple
Maplesoft Welcome Center
Teacher Resource Center
Student Help Center
feof - determine if the current position of a file is at the end
Calling Sequence
feof(file)
Parameters
file
-
file name or file descriptor
Description
feof returns true if and only if the end of a STREAM file has been reached during a readline, readbytes, or fscanf operation. Otherwise, feof returns false.
The end of file must actually have been encountered. For example, asking readbytes to read 20 bytes when only 19 remain in the file will result in a subsequent feof call returning true. On the other hand, reading the last line of a file with readline does not encounter the end of file; a subsequent call to readline will.
if a file name is given, and that file is not yet open, it is opened in READ mode with type BINARY.
Examples
See Also
file_types, filepos, iostatus
Download Help Document