M Mr. Dubey π Coach β 103.11K Points π Principles of Programming Languages Q. What is the output of following code? #include <iostream> using namespace std; int main() { int I; enum test { a = 1, b, c, d, e, f, g, h }; for (i = c; i <= g; i++) cout << " " << I; return 0; } (A) syntax error (B) 3 4 5 6 7 (C) 1 2 3 4 5 (D) none of these ποΈ Show Answer π¬ Discuss π Share β‘Menu β Correct Answer: (B) 3 4 5 6 7