Peter Alexander Sat, 07 Aug 2010 06:30:14 -0700
struct Matrix(int M, int N) { float[M][N] elements; }
Matrix(3, 3) m; assert(m[0][0] == 0); ?