The initializer for an enumeration variable contains the = symbol followed by an expression enumeration_constant.
In C++, the initializer
must have the same type as the associated enumeration type.
enum grain { oats, wheat, barley, corn, rice };
enum grain g_food = barley;