Enumerations - Programming

Q1:

Which of the following is the correct output for the C#.NET code snippet given below?
enum color
{
    red,
    green,
    blue 
}
color c; 
c = color.red; 
Console.WriteLine(c);

A 1

B -1

C red

D 0

E color.red

ANS:C - red

No answer description is available. Let's discuss.