File I/O Basics
In C++ a stream is a special kind of variable known as an object
In order to use a stream to perform i/o you need to:
- declare the stream
- connect the stream to the file (open)
- learn the read/write commands to read/write data from/to the stream
- disconnect the stream from the file (close)