This document introduces various control flow statements in C programming including decision control statements like if, if-else, else-if ladder and switch statements. It also covers loop control statements like while, do-while and for loops. It provides the syntax and examples of using each statement. Key points covered include using break, continue and goto to alter normal program flow, and the exit() function to terminate a program.