Difference between revisions of "Constant (computer programming)"

From Wiki @ Karl Jones dot com
Jump to: navigation, search
(See also)
(See also)
Line 11: Line 11:
 
* [[Computer science]]
 
* [[Computer science]]
 
* [[Constant (mathematics)]]
 
* [[Constant (mathematics)]]
 +
* [[Logical constant]]
 
* [[Programming language]]
 
* [[Programming language]]
 
* [[Source code]]
 
* [[Source code]]

Revision as of 15:09, 20 February 2016

In computer programming, a constant is an identifier with an associated value which cannot be altered by the program during normal execution -- the value is constant.

Description

A constant is different from, but related to, a variable, which is an identifier with a value that can be changed during normal execution -- the value is variable.

See also

External Links