What is the difference between the following in C language:
typedef enum month_t
{
jan,
feb,
march
}month;
AND
typedef enum
{
monday,
tuesday,
wednesday
}day;
Before posting this question I read this : What is a typedef enum in Objective-C?
But did not understand quite well...