This document introduces file handling in C programming. It defines a file as a collection of related data stored on secondary storage. Files allow data to persist when a program terminates. The document outlines different file operations like creation, opening, writing, reading and closing. It provides code examples to create a new file, read from an existing file, and append data to a file. It also discusses file organization and open modes.
Related topics: