...Constants
Note: It is not possible to copy the entire contents of one array to another using assignment - each element must be copied individually.
Constants: It is possible to give an element of any type a value which cannot be changed during execution of the program.
const int OneHundred = 100;
int Numbers[OneHundred];