
mikroC - C Compiler for Microchip PIC microcontrollers Type Qualifiers Type qualifiers const and volatile are optional in declarations and do not actually affect the type of declared object. Qualifier const Qualifier const implies that the declared object will not change its value during runtime. In declarations with const qualifier, you need to initialize all the objects in the declaration. Effectively, mikroC treats objects declared with const qualifier same as literals or preprocessor constan