Control Flow

Back to Key Concepts

The order in which statements and instructions are executed. Control flow mechanisms include sequential execution, branching (if/else), looping (for/while), and jumping (break/continue/return), directing the path of computation through a program.

programming-paradigms imperative control-flow