You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The tour skims over a pitfall I had issues with yesterday, namely that arrays are declared quite differently from the way they often are in other programming languages, even though multidimensional arrays are briefly mentioned.
If I understand correctly for example, the last element of an array defined as; int[2][4] foo is accessed using foo[3][1], as opposed to foo[1][3].
The text was updated successfully, but these errors were encountered:
The tour skims over a pitfall I had issues with yesterday, namely that arrays are declared quite differently from the way they often are in other programming languages, even though multidimensional arrays are briefly mentioned.
If I understand correctly for example, the last element of an array defined as;
int[2][4] foo
is accessed usingfoo[3][1]
, as opposed tofoo[1][3]
.The text was updated successfully, but these errors were encountered: