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