MCQOPTIONS
What will be the output of the following C code..
What will be the output of the following C code if input given is 2?
#include enum day { a,b,c=5,d,e }; main() { printf("Enter the value for a"); scanf("%d",a); printf("%d",a); }