structured programming

(redirected from Structured (programming))
Also found in: Dictionary.

structured programming

[′strək·chərd ′prō‚gram·iŋ]
(computer science)
The use of program design and documentation techniques that impose a uniform structure on all computer programs.
McGraw-Hill Dictionary of Scientific & Technical Terms, 6E, Copyright © 2003 by The McGraw-Hill Companies, Inc.

structured programming

(programming)
Any software development technique that includes structured design and results in the development of a program consisting of blocks of code whose internal details are independent. Structured programming is usually done in a block-structured language.
This article is provided by FOLDOC - Free Online Dictionary of Computing (foldoc.org)

structured programming

Techniques that impose a logical structure to the coding of a program in order to make it easy to follow. Large routines are broken down into small modules that have to be methodically and carefully nested within each other, because the use of the GOTO statement is either discouraged or not available in the language (see spaghetti code). Structured walkthroughs, which invite criticism from peer programmers, are also used.

Structured languages, such as Pascal, Ada and dBASE, force the programmer to write a structured program; however, all programming languages can be written in a structured manner. See structured English.


Functions Return to the Next Instruction
Structured programming uses functions (routines) that guarantee a return to the instruction following the one that called it. When the function is called, the address in RAM from which it was called is retained. At the end of the function, the Return instruction jumps to the address next in line.
Copyright © 1981-2024 by The Computer Language Company Inc. All Rights reserved. THIS DEFINITION IS FOR PERSONAL USE ONLY. All other reproduction is strictly prohibited without permission from the publisher.
Full browser ?