How to Use Enum in C Program

104 17
    • 1). Open the application you use to code C with and load your program's source file.

    • 2). Type "enum," the name you want to give your enum type and a "{". Type an ordered list of the names you want to include in the enum type. Place a comma after each name, except for the last one. Type "{;" after the last name in the enum type list. The names will receive integer values starting from 0 and increasing by 1 each line. You can change the default values by using the "=" sign, like "my_name = 5,". If you use "=" on a line, subsequent names will have integer values increasing by 1 from that line's value. An example:

      enum my_type {

      zero,

      two = 2,

      three

      };

      Zero has a value of 0, two has a value of 2 and three has a value of 3.

    • 3). Create a variable of your enum type with the format "enum enum_type variable_name;". An example: "enum my_type my_variable = three;" You can use the enum type names throughout your program as you would an integer. For example, "int i = three;".

Subscribe to our newsletter
Sign up here to get the latest news, updates and special offers delivered directly to your inbox.
You can unsubscribe at any time

Leave A Reply

Your email address will not be published.