Describe the purpose of the qualifiers const and volatile.
Answers
Answered by
1
Const and volatile Qualifiers in C
The const qualifier tells the compiler that the variable's value should not be changed once it has been initialized. ...
Const int k=55;
then any subsequent attempt to modify the variable k will be flagged as an error by the compiler.
laxmipriyaojha2002:
mark as brainiest if helpful
Similar questions