= Dimensioning Static Arrays = ''Part of'' ArraysCategory == Description == Shows two ways that arrays can be dimensioned. == Example == {{{ #!d void main() { /* Believe it or not, but these two arrays have the same dimensions. */ int[20][2] whatever; int whatever2[2][20]; whatever[0][19] = 2; whatever2[0][19] = 2; } }}} == Source == Inspired by [http://www.digitalmars.com/pnews/read.php?server=news.digitalmars.com&group=D&artnum=22869 D:22869].