VOOZH about

URL: https://www.geeksforgeeks.org/cpp/how-to-convert-enum-to-string-in-cpp/

⇱ How to Convert an Enum to a String in C++? - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

How to Convert an Enum to a String in C++?

Last Updated : 23 Jul, 2025

In C, an enumeration is a user-defined data type whose members can be assigned some integer values. In this article, we are going to discuss how to convert an Enum to a String in C++.

Example:

Input:
myColor = GREEN;
Output:
Green

Convert an Enum to a String in C++

There are various methods to convert an enum to a string. A typical practice to convert an enum into a string is creating the mapping between values of enums and their string representations.

Approach

  • Define an enum that represents a collection of related constants, assigning each constant a meaningful name.
  • Use map to create a connection between enum values and their corresponding string representations.
  • Establish a clear association between each enum value and its corresponding string by populating the mapping data structure.
  • Develop a function that takes an enum value as input and returns its associated string by referencing the established mapping.
  • Return the corresponding string from the function based on the enum parameter.

C++ Program to Convert an Enum to a String


Output
Color: Green

Time Complexity: O(1)
Space Complexity: O(N), N is the number of items in the enum.



Comment