🔵 Core C++ · Lesson 29
Enumerations in C++
Enumerations in C++
What is Enumerations in C++?
Enumerations in C++
An enum defines a set of named integer constants. It improves readability when a variable can have limited fixed choices.
An enum defines a set of named integer constants. It improves readability when a variable can have limited fixed choices.
Level
🔵 Core C++ Features
🔵 Core C++ Features
Example File
enums.cppMain Focus
Concept + syntax + practical C++ program
Concept + syntax + practical C++ program
Why should you learn this?
- It helps you write correct and readable C++ programs.
- It is used repeatedly in school practicals, projects and competitive programming.
- It builds the base for advanced topics such as OOP, STL and data structures.
Important Terms
| Term | Meaning / Use |
|---|---|
| enum | Enum used in Enumerations in C++ programming. |
| enum class | Enum class used in Enumerations in C++ programming. |
| constant | Constant used in Enumerations in C++ programming. |
| state | State used in Enumerations in C++ programming. |
| readability | Readability used in Enumerations in C++ programming. |
Syntax / Pattern
enum Day {Mon, Tue, Wed};
Example Program
#include <iostream>
using namespace std;
enum Result { FAIL, PASS, MERIT };
int main(){
Result r = MERIT;
cout << r;
return 0;
}
Expected Output
2
Program Explanation
- Enum values start from 0 by default.
- MERIT is the third value, so it prints 2.
Exam Tip: In C++ practical answers, write the logic first, then the program, then expected output. For theory, always include one suitable example.
Where will you use it?
- status values
- menu states
- days/months
Common Mistakes
- Using plain enum names that conflict.
- Expecting enum to store strings.
Practice Tasks
- Create enum for traffic lights.
- Use enum in switch-case.
Summary
Enumerations in C++ is an important C++ topic. Learn the definition, understand the syntax, run the example program and then solve the practice tasks to make the concept strong.
What is Enumerations in C++?
Enumerations in C++
An enum defines a set of named integer constants. It improves readability when a variable can have limited fixed choices.
An enum defines a set of named integer constants. It improves readability when a variable can have limited fixed choices.
Level
🔵 Core C++ Features
🔵 Core C++ Features
Example File
enums.cppMain Focus
Concept + syntax + practical C++ program
Concept + syntax + practical C++ program
Why should you learn this?
- It helps you write correct and readable C++ programs.
- It is used repeatedly in school practicals, projects and competitive programming.
- It builds the base for advanced topics such as OOP, STL and data structures.
Important Terms
| Term | Meaning / Use |
|---|---|
| enum | Enum used in Enumerations in C++ programming. |
| enum class | Enum class used in Enumerations in C++ programming. |
| constant | Constant used in Enumerations in C++ programming. |
| state | State used in Enumerations in C++ programming. |
| readability | Readability used in Enumerations in C++ programming. |
Syntax / Pattern
enum Day {Mon, Tue, Wed};
Example Program
#include <iostream>
using namespace std;
enum Result { FAIL, PASS, MERIT };
int main(){
Result r = MERIT;
cout << r;
return 0;
}
Expected Output
2
Program Explanation
- Enum values start from 0 by default.
- MERIT is the third value, so it prints 2.
Exam Tip: In C++ practical answers, write the logic first, then the program, then expected output. For theory, always include one suitable example.
Where will you use it?
- status values
- menu states
- days/months
Common Mistakes
- Using plain enum names that conflict.
- Expecting enum to store strings.
Practice Tasks
- Create enum for traffic lights.
- Use enum in switch-case.
Summary
Enumerations in C++ is an important C++ topic. Learn the definition, understand the syntax, run the example program and then solve the practice tasks to make the concept strong.