#include enum weather { clouds, rain, sunny, storm }; int main( void ) { weather today = sunny; std::cout << clouds << ' ' << rain << ' ' << sunny << ' ' << storm << '\n'; std::cout << "today: " << today << '\n'; }