Q86
What will be the output of the following C code? #include int main() int ary[2][3]; ary[][] = 1, 2, 3, 4, 5, 6; printf("%d ", ary[1][0]);
A.
Compile time error
AnswerB.
4
C.
1
D.
2
Answer: Option A
Solution
Answer: Option A
No explanation is given for this question Let's Discuss on Board