#include enum weather { clouds = 30, rain = 5, sunny = 255, storm = 1 }; enum boolean { BTRUE = 1, BFALSE = 0 }; int main( void ) { enum weather today; today = rain; printf( "%d %d %d %d \n", clouds, rain, sunny, storm ); }