I think const makes the int not a variable.
1 Like
Const make it so the variable stays consistent to what you assigned it to.
const int age = 24 will only ever be 24
oh ok
I think const makes the int not a variable.
Const make it so the variable stays consistent to what you assigned it to.
const int age = 24 will only ever be 24
oh ok