โช Choose the correct option.
What will be output of the following “c” code?
#include
enum color{BLACK, BLUR, GREEN};
void main()
{
printf("%d %d %d", BLACK, BLUR, GREEN);
}
#include
enum color{BLACK, BLUR, GREEN};
void main()
{
printf("%d %d %d", BLACK, BLUR, GREEN);
}