In C++ programming, enum or enumeration is a data type consisting of named values like elements, members, etc., that represent integral constants. It provides a way to define and group integral constants.
BrindhaPrathaban Answered question June 28, 2023
An enumeration is a user-defined type composed of a collection of named integral constants known as enumerators. Note. This article discusses the ISO Standard C++ Language enum type as well as the scoped (or strongly-typed) enum class type introduced in C++11.
Vishalini.R Answered question June 27, 2023
