Control structures in C
The control structures determine the order in which the various instructions in a C program are to be executed. In other words, they determine the flow of control in a C program. The different control structures are as follows: Sequential control structure Conditional branching structure Unconditional branching structure Loop structure Sequential control structure This type … Read more