Constants are named values that remain unchanged after they are declared.


const MAX_COUNT = 10;
const int FAVORITE_COLOR = 0xFF99CC00;

A constant may only be assigned a literal value.

See Also...