hey guys,<BR><BR>I want to make a 3D array of size X by Y by Z. Y and Z are constants, and X is read in during the initialization process of my code. Using g++, I was ...
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 ...