The const keyword

Possible uses of the const keywords are:

const int x=10; // x is a constant integer. It has to be initialized as it is declared. Cannot be changed later.

const int *p; // p is a pointer to a constant int. Okay to change p. Cannot change what p points to.

int* const p; // p is a constant pointer to an integer