Page 1 of 1

What will be the output of the following C function?

Posted: Wed Jul 13, 2022 7:53 pm
by answerhappygod
#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) 0
b) Compile time error
c) 1
d) 8