Reply to Jesse,
In C allocating a static 2D array gives a continues chunk of memory. Java creates an array that points to more arrays. Just wondering how D handles this.
int[5][6] a; // like C
Reply to Jesse,
In C allocating a static 2D array gives a continues chunk of memory. Java creates an array that points to more arrays. Just wondering how D handles this.
int[5][6] a; // like C