CC Constants
Unchangeable variables.
C Constants
If you don't want others (or yourself) to override existing variable values, use the const keyword (this will declare the variable as "constant", which means unchangeable and read-only).
It is considered good practice to declare constants with uppercase.
Examples
Const Keyword
c example