I have quite a basic question.
For example:
int a[][] = {{1,2,3,4},{5,6,7,8},{9,10,11,12}}
we say it is [3][4] as it has 3 elements and each element has its own 4 elements.
but how about:
int a[][] = {{1},{5,6,7},{9,10,11,12}}
is it still [3][4]?
update
so based on the helpful comments below, my first example can be written as a [3][4] array, but the second one cannot be indicated like that, right?