I am a beginner in C++ programming.
Today I come across a new topic: strongly typed enum. I\'ve researched it a bit but till now I am unable to find ou
There's a good article about enums at this IBM page, it's very detailed and well-written. Here are some important points in a nutshell:
The scoped enums solve most of the limitations incurred by regular enums: complete type safety, well-defined underlying type, scope issues, and forward declaration.