What can be said of the following program?
main()
{
enum Months {JAN =1,FEB,MAR,APR};
Months X = JAN;
if(X==1)
{
printf(Jan is the first month);
}
}
Reveal answer
Fill a bubble to check yourself