Ask your own question, for FREE!
Computer Science 15 Online
OpenStudy (anonymous):

c++ question: I created a 2d array of size [1024][1024]. The program is now segfaulting right on the line where the array is declared. Why is this?

OpenStudy (anonymous):

when you make a declaration of a multidimentional array on that explicit way, you must declare the elements of the array, ex: int[2][2] = { {0,0},{1,1} }, but obviusly this is not helpful for a big size... personally i would use std map or a pointer pointer array

OpenStudy (anonymous):

A little code would sure be helpful because "created a 2d array" is not very precise.

OpenStudy (anonymous):

sure: float groupMatrix[maxX][maxY]; that declaration alone causes a segfault when maxX and maxY are over 1020, but doesn't segfault for values < 1020.

Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!
Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!