InterviewSolution
Saved Bookmarks
| 1. |
What are control structures? What are the different types? |
|
Answer» These structures are statements that are used to CONTROL the flow and direction of the execution of a PROGRAM in C. It brings together instructions and LOGICAL UNIT. Control structures have two main classes - conditionals and loops. There are three different types of control structures are - Selection, Sequence, and Repetition. |
|