give the output of the following int x=(4>3)?4*3 : 3*4; .
Answers
Answered by
0
Explanation:
I think it should be int x[][] = {{…},{…}}, we are creating an array of array, and initlizing it during creation, and when we write x[1] we are referring a complete array of 3 elements, (x[1], mean second number array), and when we add [0] also, then we mean that we are accessing first element of that array (that we recetly pointed by x[1]), so x[1][0] mean second array’s first element, :)
Similar questions