Introduction
File pointers help your program find and work with files on your computer. They keep track of where you are inside a file.
When you want to read data from a file, like a list of names.
When you want to save information to a file, like saving game scores.
When you want to update or change parts of a file without rewriting the whole file.
When you want to check if a file exists or open it safely.
When you want to move around inside a file to read or write at different places.