🔵 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.
Level
🔵 Core C++ Features
Example File
enums.cpp
Main Focus
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

TermMeaning / Use
enumEnum used in Enumerations in C++ programming.
enum classEnum class used in Enumerations in C++ programming.
constantConstant used in Enumerations in C++ programming.
stateState used in Enumerations in C++ programming.
readabilityReadability 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

  1. Create enum for traffic lights.
  2. 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.
Level
🔵 Core C++ Features
Example File
enums.cpp
Main Focus
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

TermMeaning / Use
enumEnum used in Enumerations in C++ programming.
enum classEnum class used in Enumerations in C++ programming.
constantConstant used in Enumerations in C++ programming.
stateState used in Enumerations in C++ programming.
readabilityReadability 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

  1. Create enum for traffic lights.
  2. 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.

← Back to C++ Tutorial