-
The goal of structured programming is to
-
- have well indented programmes
- be able to infer the flow of control from the compiled code
- be able to infer the flow of control form the program text
- avoid the use of GOTO statements
- have well indented programmes
Correct Option: C
The main goal of structured Programming is to get an understanding about the flow of control in the given program text. In structure programming various control structures such as switch case. If then – else, while, etc.
Allows a programmer to decode the flow of the program easily.