C++20 sections · 1024 units
Open in CourseQuiz: for Loop Structure
Test understanding
Check Your Understanding
In for (int i = 0; i < 5; i++), when does i++ execute?
- A.Before the loop body runs
- B.Before the condition is checked
- C.Only on the last iteration
- D.After the loop body completes