const Local Variables

Learn about const local variables.

Introduction to const local variables

We can declare all our local variables that are not supposed to change their values as const. Doing so can help future readers of the code (including ourselves) and the compiler perform some optimizations.

Local vs. global variables

auto mutableNumber{42};
mutableNumber = 666; // This is OK
const auto
...