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