The const keyword makes a variable read-only. Once you initialize it, you cannot change its value. Example: const double PI = 3.14159265359;. If you try to modify a const variable, you get a compilation error.
This prevents bugs where you accidentally change a value that should stay fixed. Use ALL_CAPS for constant names by convention: const int MAX_SIZE = 100;. This makes it obvious that the value should not change.