Q103
What will be the output of the following C code? #include void main() int a[2][3] = 1, 2, 3, , 4, 5; int i = 0, j = 0; for (i = 0; i < 2; i++) for (j = 0; j < 3; j++) printf("%d", a[i][j]);
A.
1 2 3 junk 4 5
B.
Compile time error
AnswerC.
1 2 3 0 4 5
D.
1 2 3 3 4 5
Answer: Option B
Solution
Answer: Option B
No explanation is given for this question Let's Discuss on Board