Home Articles FAQs XREF Games Software Instant Books BBS About FOLDOC RFCs Feedback Sitemap
irt.Org

control flow

You are here: irt.org | FOLDOC | control flow

<programming> (Or "flow of control") The sequence of execution of the instructions in a program. Control flow is normally linear, executing the instructions in the order they were written. It can be changed at run time by control structures such as if statements, loops or goto statements). These high-level language statements are translated by the compiler or interpreter into machine instructions, most commonly conditional branch instructions.

Interrupts and exception handling also change the sequence of execution of instructions but are not part of normal control flow.

Not to be confused with "flow control".

(2017-07-30)

Nearby terms: control-C « control character « control code « control flow » control-G » control key » Control Language

FOLDOC, Topics, A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R, S, T, U, V, W, X, Y, Z, ?, ALL

©2018 Martin Webb