On Fri, 23 Sep 2005, Bill Studenmund wrote: > Cool! Finally C can deal with Fortran-style multidimensional arrays (if I > understand that right). Yes, but the elements of Fortran "INTEGER FOO(M,N)" will be stored in column major order, while the elements of C99 "int foo[m][n];" will be stored in row major order. --apb (Alan Barrett)