I'm trying to templatize a class, based on a list of values. The list can't be another class - template parameters need to be compile-time constants. So that leaves arrays as the option.<P>My current ...
I need a fairly large 3-dimensional array of long longs (64-bit integers). It's dimensions are 64x2x6. If I try to initialize the array without malloc'ing(), I get a segfault.<BR><BR>I know, I should ...