Subject: Re: slightly off topic: [*]
To: None <tech-toolchain@netbsd.org>
From: Alan Barrett <apb@cequrux.com>
List: tech-toolchain
Date: 09/23/2005 19:22:50
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)