Q. Which statement is true about the given code ?
Code:#include <stdio.h>
enum colors {lets,find,course};
int main()
{
printf("%d %d %d",course,lets,find);
return 0;
}
β
Correct Answer: (C)
2 0 1
#include <stdio.h>
enum colors {lets,find,course};
int main()
{
printf("%d %d %d",course,lets,find);
return 0;
}
You must be Logged in to update hint/solution