Constants In C Language
A constant is an identifier that refers to the fixed values that do not change during the execution of a program. Declaring constants :We can declare constant variable using constkeyword. Example (syntax) : type const variable_name = value; constant float const pi = 3.14; int const a = 5; Symbolic Constants : Symbolic Constant is … Read moreConstants In C Language