2
Reply

What is an Enumeration Constant?

Tripti Tiwari

Tripti Tiwari

Oct 04, 2013
1k
0

    http://www.programiz.com/c-programming/c-enumeration

    Munesh Sharma
    February 14, 2015
    0

    Enumeration is a data type. We can create our own data type and define values that the variable can take. This
    can help in making program more readable. enum definition is similar to that of a structure.
    Example: consider light_status as a data type. It can have two possible values - on or off.
    enum light_status
    {
    on, off
    };
    enum light_status bulb1, bulb2;
    /* bulb1, bulb2 are the variables */
    Declaration of enum has two parts:
    a) First part declares the data type and specifies the possible values, called 'enumerators'.
    b) Second part declares the variables of this data type.
    We can give values to these variables:
    bulb1 = on;
    bulb2 = off;

    Tripti Tiwari
    October 04, 2013
    0