Hello,

i did not have used enum so far, so i have the following questions:

Code:
enum Numbers { ONE, TWO, THREE, FOUR, FIVE };
typedef enum { ONE, TWO, THREE, FOUR, FIVE } Numbers;
1. What is the difference?

2. I have the words ONE, TWO..., why do i need the word Numbers?

3. How i have to use Numbers, i tried some ways but nothing worked?

Thank you!

greetings
newatC