how to use enums in cpp code example

Example: enum in c++

#include <iostream>
enum Example :unsigned char // char will work but float will not work because it is not an interger
{
	A = 9, B = 56, c = 12//values must be integers
};//enum is a just a name for a group of numeric values 
int main()
{
	Example example = A;
	//	Example example2 = 5;// This gives error because the values must be A , B ,C no other values are accepted in our code however we can break this behaiour in c++
	if (example == A)//We can use A directly because it is just an unsigned char var but is grouped in Example enum with other values
		std::cout << "Good" << std::endl;
	std::cin.get();
  
}

Tags:

Cpp Example