Hey,
I know that declaring a enum is done like this for example
Code:
enum wind_directions_t {NO_WIND, NORTH_WIND, SOUTH_WIND, EAST_WIND, WEST_WIND};
win_directions_t is the enum type(if i understood the tutorial well), but what if the enum doest have a type and is declared like this
Code:
enum {NO_WIND, NORTH_WIND, SOUTH_WIND, EAST_WIND, WEST_WIND};
Whats the difference about having a type and not?