imperative language
Appearance
English
[edit]Noun
[edit]imperative language (plural imperative languages)
- (computing) Any programming language that consists (mostly) of a series of commands, typically assigning values to objects; a procedural language.
x = 1;
y = 2;
z = x + y;
printf("%d\n", z);