C Program to create a enum user defined datatype for days of a week and print the index of a week

Program

#include <stdio.h>
enum week { sunday, monday, tuesday, wednesday, thursday, friday, saturday };
void main()
{
	enum week today;
	today = tuesday;
	printf("Today's index is: %d\n", today);
}

Output

Today's index is: 2