Enum is used to give names to integral constants
Here in code enum is data type
Week is the variable name given to the data type .
While "enum week days" ,here days represent the contents inside the {} in declaration of enum.
//Enum is declared outside the main function.