Q98
What will be the output of the following C++ code? #include using namespace std; int main() int i; enum month JAN = 1, FEB, MAR, APR, MAY, JUN, JUL, AUG, SEP, OCT, NOV, DEC ; for (i = MAR; i <= NOV; i++) cout << i; return 0;
A.
01234567891011
B.
123456789101112
C.
34567891011
AnswerD.
123456789
Answer: Option C
Solution
Answer: Option C
No explanation is given for this question Let's Discuss on Board