Demonstrate an enumeration. : enum « Data Types « C++ Tutorial






#include <iostream> 
using namespace std; 
 
enum Letter { A, B, C, D, E }; 
 
char name[][20] = { 
  "Automobile", 
  "Bank", 
  "Cat", 
  "Day", 
  "eagle" 
}; 
 
int main() 
{ 
  Letter how; 
 
  how = A; 
  cout << name[how] << '\n'; 
 
  how = C; 
  cout << name[how] << '\n'; 
 
  how = D; 
  cout << name[how] << '\n'; 
 
  return 0; 
}
Automobile
Cat
Day








2.27.enum
2.27.1.Define and output an enumeration
2.27.2.A Demonstration of Enumerated Constants
2.27.3.Demonstrate an enumeration.
2.27.4.An enumeration variable
2.27.5.An enumeration static_cast
2.27.6.Return enum from a function
2.27.7.Using consts and enums in Arrays
2.27.8.Compare enum elements