This document provides information about conditional statements in C programming. It discusses if statements which execute a block of code if a boolean expression is true. It provides the syntax for if-else statements. It also discusses switch statements which allow a variable to be tested against multiple case values and execute the code for the matching case. The syntax for switch statements is also given.