What will be output of following c program?

			  		

Loading

โœช Choose the correct option.

What will be output of following c program?


#include
int main(){
enum number { a=-1, b= 4,c,d,e};
printf("%d",e);
return 0;
}

A. 1
B. 3
C. 5
D. 7