#enum-forward-declaration
Read more stories on Hashnode
Articles with this tag
Preface There are two forms of enumeration in C++, enum and enum class. Enum is the pre-c++11 syntax, which means it is an unscoped enumeration. The...