C++ Language/ProgramFlow
When a C++ program is running, you should think of the computer as executing its statements in a flow that generally goes linearly from first to last statement. However, the language provides several programming constructs which can alter that program flow.
- Loops
- The break Statement
- Return Value
- Parameters
- Function Overloading
- Function-Pointer
- Deprecating a Function