This document discusses file management in 3 paragraphs. It describes what a file is, common file operations like naming, opening, reading, writing and closing files. It explains different modes for opening files like read, write and append and provides examples of opening files. It also gives examples of C programs that illustrate reading a file using getc(), reading a line using fgets(), and writing characters and strings to a file using fputc() and fputs().