How does a compiler, C or C++, (for example, gcc) honors the const declaration?
const
For example, in the following code, how does the compiler keeps trac
I'm sure others can elaborate more, but in short, yes. The compiler keeps track of all type specifiers so that it knows that ci is of type "const int", and not "int".