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