My guess that when " const int" is used the variable can no longer be changed with in the code.
1 Like
yep,
const means that the variable is constant which means that it can not be changed after declaration.
1 Like