...

/

Introduction to Enumeration

Introduction to Enumeration

Get introduced to enumeration with the help of an interactive example.

What is an enumeration?

During programming, we are often required to store and use values of colors, marital status, etc. This can be done using:

  • Strings
  • Constants
  • Macros

All the above ways have their own limitations, as discussed in the ...