Control Structures in C Language
Control Structures in C Language
The three main types of selection statements are if, if… else and
switch statements.
The most basic and common is the if statement. The if and if…
else statements can be nested.
Switch statements are ideally used when there are multiple cases to
choose from.
Repetition