Q13
What will be the output of the following code: for (int i = 0; i < 3; ++i) for (int j = 0; j < 2; ++j) cout << i << j << " "; ?
A.
Compilation error
B.
00 10 20 01 11
C.
00 11 22 33 44
D.
00 01 10 11 20 21
AnswerAnswer: Option D
Solution
Answer: Option D
No explanation is given for this question Let's Discuss on Board