<<< Unformatted I/O Example | Index | Unformatted I/O Summary >>> |
Acronym EOF stands for condition known as end of file.
When reading from a file, the condition occurs naturally at the end of file.
To keep things consistent, the condition is also triggered when user enters
CTRL+Z (on Windows machine) CTRL+D (on Unix machine)
on the keyboard.
EOF is a symbol that becomes defined after
#include <iostream>
<<< Unformatted I/O Example | Index | Unformatted I/O Summary >>> |