Chapter 4: Problem 1
What is a control structure?
Short Answer
Expert verified
Answer: The three main types of control structures in programming are sequential, selection, and iteration (loop). Sequential control structures execute statements in the order they are written, without any decision-making or looping (e.g., `int sum = a + b;`). Selection control structures make decisions based on conditions, usually using if-else or switch statements (e.g., `if (temperature > 25) { printf("It's hot outside."); }`). Iteration control structures, or loops, execute a block of code multiple times until a condition is met, and include for loops, while loops, and do-while loops (e.g., `for (int i = 0; i < 10; i++) { printf("Iteration %d", i); }`).