Define the Data Type Qualifiers in c Language?
1. const
2. volatile
const: The const qualifier is used to tell C that the variable value can't change after initialization.
Eg:
const float pi=3.14159;
pi can't be changed at a later time within the program.