Control structure

управляющая конструкция в процедурных языках программирования - конструкция, позволяющая организовывать операции выбора, повторения и исполнения последовательности операторов Смотри также: procedural language

Англо-русский словарь компьютерных терминов

Control structure

1) гидроузел 2) водосброс, водосбросное сооружение; водослив; водовыпуск 3) водозабор, водозаборное сооружение 4) управляющая структура (программы)

Англо-русский политехнический словарь

Control structure

One of the instructions, statements or groups of statements in a programming language which determines the sequence of execution of other instructions or statements (the control flow). In assembly language this typically consists of jumps and conditional jumps along with procedure call and return though some architectures include other constructs such as an instruction which skips the following instruction depending on some condition, various kinds of loop instructions (later Motorola 680x0) or conditional execution of all instructions (Advanced RISC Machine). Basic control structures (whatever their names in particular languages) include "if CONDITION then EXPRESSION else EXPRESSION", the switch statement, "while CONDITION do EXPRESSION", "gosub", the suspect "goto" and the much-feared "come from". Other constructs handle errors and exceptions such as traps and interrupts.

Free Online Dictionary of Computing