This document summarizes Chapter 5 of the book "C Programming: A Modern Approach" regarding selection statements in C. It discusses logical expressions using relational and equality operators that return true or false values. It then covers the if statement for conditional execution, including else clauses, nested if statements, and conditional expressions. Finally, it discusses the switch statement as an alternative to nested if statements for selecting among multiple possible cases.