MCQOPTIONS
What will be the output of the following C code..
What will be the output of the following C code?
#include enum hi{a,b,c}; enum hello{c,d,e}; main() { enum hi h; h=b; printf("%d",h); return 0; }