<br><div><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">an example:<br><br>int foo[4][8][32][35];<br><br>So...<br><br>&nbsp;&nbsp;&nbsp;&nbsp; foo[x][y][z][w] is of type int
<br>&nbsp;&nbsp;&nbsp;&nbsp; foo[x][y][z] is of type int [ ]<br>&nbsp;&nbsp;&nbsp;&nbsp; foo[x][y] is of type int [ ] [ ]<br>&nbsp;&nbsp;&nbsp;&nbsp; ...<br>&nbsp;&nbsp;&nbsp;&nbsp; foo is of type int [ ] [ ] [ ] [ ]<br><br>x, y, z, w represent integers in this example.</blockquote><div><br><br>Ok, so in cases like that it's especially important to declare them in the right order. In the 2D case&nbsp; as I understand it you can easily&nbsp; treat a row as if it&nbsp; were a array (which is waht I wanted) but it's less easy to treat a column as one, right?
<br></div><br>Kas.<br></div>