Tripti Tiwari
What is an Enumeration Constant?
By Tripti Tiwari in C, C++, MFC on Oct 04 2013
  • Munesh Sharma
    Feb, 2015 14

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

    • 0
  • Tripti Tiwari
    Oct, 2013 4

    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;

    • 0


Most Popular Job Functions


MOST LIKED QUESTIONS