Q28
What will be the output of the following code: for (int i = 0; i < 5; ++i) if (i == 3) continue; cout << i << " "; in C++?
A.
0 1 2 3 4
B.
0 1 2 3
C.
Compilation error
D.
0 1 2 4
AnswerAnswer: Option D
Solution
Answer: Option D
No explanation is given for this question Let's Discuss on Board