what is the proceduer for storing constant in a variable?give example
Answers
Answered by
1
Answer. const int n=10; //A const is not a variable, it is a constant. You can not alter or assign to the //value, you can only use whatever was defined.
Similar questions