Question:What will be output when you will execute following c code?
#include<stdio.h> extern enum cricket x; int main(){ printf("%d",x); return 0; } const enum cricket{ Taylor, Kallis=17, Chanderpaul }x=Taylor|Kallis&Chanderpaul;
A 0
B 15
C 16
D 17
E Compilation error
+ AnswerC
+ Explanation
+ Report