The execution flow of the programming is under control of control flow statements.
In ‘c’ programming language control flow statements are classified into 3 types:
Decision making statements If else
Selection statements
switch
Iteration statements
while
for
do while
Jumping statements
breaks
continue
and go to
Decision making Statements
When we are working with a decision making statement if condition is true then block is executed if condition is false then corresponding block will be ignored.
Jump statement
Jump statements are generally used to interrupt the normal flow of a program.
Iteration Statement
Iteration statements are used to create loops in the program. Loops means a block of code executed repeatedly until the condition we write in the program is satisfied.
Iteration statements in C are for, while and do-while.