
What will be the output of the following C function?#include <stdio.h>enum birds {SPARROW, PEACOCK, PARROT};enum animals {TIGER = 8, LION, RABBIT, ZEBRA};int main(){enum birds m = TIGER;int k;k = m;printf("%d\n", k);return 0;}a) 0b) Compile time errorc) 1d) 8Answer: dExplanation: m is an integer constant, hence it is compatible.