There are three main types of control structures in computer programming: sequential logic, selection logic, and iteration logic. Sequential logic executes code line-by-line. Selection logic (e.g. if/else statements) allows executing code conditionally. Iteration logic (e.g. for loops) repeats code execution in loops. The document provides examples of if/else, nested if, switch statements, and the conditional operator for implementing various control structures in C programming.