C - Structures,Unions - Discussion

You Are Here :: Home > C > Structures,Unions - Discussion

 



Q.

What will be the output of the program ?

#include
int main()
{
enum status {pass, fail, absent};
enum status stud1, stud2, stud3;
stud1 = pass;
stud2 = absent;
stud3 = fail;
printf("%d %d %d\n", stud1, stud2, stud3);
return 0;
}

A. 0, 1, 2 B. 1, 2, 3
C. 0, 2, 1 D. 1, 3, 2

Answer: Option C
Explaination:

No Explanation



Discussion

Your Comments Goes here...
NameDiscussion