|
|
The const modifier tells the compiler that a variable cannot be changed by your program. A const variable may, however, be given an initial value when it is declared. Specifying a pointer as const prevents the object it points to from being modified.
|
|