My thoughts on const

When using const, you tell the compiler not just reserve space for a variable, but to store at a fixed adress in the memory the value with which you’ve initialized the const declared variable.
In addition you are not able to change the value of the variable

Privacy & Terms