The document provides information on various selection control structures in C programming:
1. If structure - executes statements if a condition is true.
2. If-else structure - executes one set of statements if a condition is true, and another set if false.
3. If-else if structure - checks multiple conditions in sequence.
4. Switch structure - tests a variable against multiple constant values, and executes one set of statements for true cases.
5. Goto structure - unconditionally transfers control to another part of the program.