I'm having some trouble declaring a multi-dimensional array of doubles in Cocoa using 10.1.5.
double d[10][10]; works fine, however larger sizes cause a crash.
For instance, double d[256][256]; will compile but result in EXC_BAD_ACCESS.
Is there another step I need to take when allocating memory for these arrays?