what are the diffrent types of control structres
Answers
Answered by
0
Answer:
Flow of control through any given function is implemented with three basic types of control structures:
Sequential: default mode.
Selection: used for decisions, branching -- choosing between 2 or more alternative paths.
Repetition: used for looping, i.e. repeating a piece of code multiple times in a row.
Answered by
0
Flow of control through any given function is implemented with three basic types of control structures:
- Sequential: default mode. ...
- Selection: used for decisions, branching -- choosing between 2 or more alternative paths. ...
- Repetition: used for looping, i.e. repeating a piece of code multiple times in a row.
Similar questions