โช 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;
}