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 status {
pass, fail, supp
};
enum status stud1, stud2, stud3;
stud1 = pass;
stud2 = supp;
stud3 = fail;
printf("%d, %d, %d ", stud1, stud2, stud3);
return 0;
}

A. 36923
B. 0,1,2
C. 36557
D. 0, 2, 0