Which statment is true about the given code ?
#include
enum colors {lets,find,course};
int main()
{
printf("%d %d %d",course,lets,find);
return 0;
}
Answer: C
enum assigns numbers starting from 0, if not explicitly defined by some other integer.