In C/C++, there are constants and pointer to constants. I'm talking here about constants (i.e., `const int var1; int* const var2`) and not pointer to constants (i.e., `const int* var3`). In 90% of cases that I see, usage of constants for **local "variables" and parameters** is "wrong". People seems to...
[Read More]