In software engineering there are two approaches which are followed by codingtechniques
Structured programming techniques:-
In this programming approach codes are given some structures, it involves writing codes in blocks. It involves extensive use of selection (branching statement like if-else, case), sequence (line by line commands) and repetition (use of for loop, while, do-while) of blocks.
It breaks down larger programs into smaller so that it executes some task.
Procedural programming technique:-
It shares same features as structured but it implements procedural or subroutines to execute common functionality.
Markdown for AI
A clean, structured version of this page for AI assistants and LLMs.
We use cookies to ensure you have the best browsing experience on our website. By using our site, you
acknowledge that you have read and understood our
Cookie Policy &
Privacy Policy.
In software engineering there are two approaches which are followed by coding techniques
Structured programming techniques:-
In this programming approach codes are given some structures, it involves writing codes in blocks. It involves extensive use of selection (branching statement like if-else, case), sequence (line by line commands) and repetition (use of for loop, while, do-while) of blocks.
It breaks down larger programs into smaller so that it executes some task.
Procedural programming technique:-
It shares same features as structured but it implements procedural or subroutines to execute common functionality.