Output of C Program | Set 22
Predict the output of following C programs.Question 1: C #include<stdio.h> int main() { enum channel {star, sony, zee}; enum symbol {hash, star}; int i = 0; for(i = star; i <= zee; i++) { printf("%d ", i); } return 0; } Output: compiler error: redeclaration of enumerator 'star' In