So a variable's value can change:
int main() { int x = 5; x = 10; // this is ok }
But what if we want to create a value that can't change? We can use the const type qualifier.
const
int main() { const int x = 5; x = 10; // error }