What will be the output of the following program on GCC compiler?

Loading

โœช Choose the correct option.

What will be the output of the following program on GCC compiler?

#include    
int main() {
enum days {MON=-1, TUE, WED=6, THU, FRI, SAT};
printf("%d, %d, %d, %d, %d, %d ", MON, TUE, WED, THU, FRI, SAT);
return 0;
}

A. -1, 0, 1, 2, 3, 4
B. -1, 0, 6, 7, 8, 9
C. -1,0,6,0,1,2
D. -1,0,6,1,2,3