This document discusses file handling in C. It covers opening, reading from, writing to, and closing files. The key points are:
- Files allow storing data permanently that can be accessed by programs. Common file operations in C include opening, reading, writing, and closing files.
- To open a file, the fopen function is used, specifying the file name and mode (e.g. read, write, append). This returns a FILE pointer used for subsequent operations.
- Common functions for reading from files include getc, fgetc, fscanf. Common functions for writing include putc, fputc, fprintf.
- It is important to close files after