What is structured programming paradigm | Razsoft education
Structured programming
Structured programming is a programming paradigm in which we use some predefine keywords to control the flow (branching) of the program. Unlike in procedural language we have goto keyword to control flow. In structured program we have for, while, do while if , else, these type of keywords to control the flow better and also have blocks to maintain the scope of the variable or to group a set of related code. These blocks are formed by curly braces ( { } ) in C++.
nice content
ReplyDelete