Constant in C Programming

Posted on

Fixed in C

Sorts of Fixed in C

It’s an identifier whose worth cannot be modified on the execution time of program. Typically fixed can be utilized to characterize as fastened values in a C program. Constants are categorized into following varieties.

constant - Constant in C Programming

If any single character (alphabet or numeric or particular image) is enclosed between single cotes ‘ ‘ referred to as single character fixed.

If set of characters are enclosed between double cotes ” “ referred to as string character fixed.

Declare fixed

const key phrase are used for declare a continuing.

Syntax

Instance

constant example - Constant in C Programming