954,496 Members — Technology Publication meets Social Media
Username:
Password:
Lost login information?
Have something to say? Contribute New Article Reply to this Article

Limit on Integer 2-dimensional arrays?

I was trying out a 2-dimensional integer array on a UNIX box. I hit up a 'Segmentation Fault' on trying to run it.

#include <iostream>
#include <cstdlib>
using namespace std;

int main() {
	int matrix[2000][2000];
	int i, j;
	srand ( 1 );
	for (i=0; i<2000; i++) {
		for (j=0; j<2000; j++) {
		matrix[i][j] = rand() %1000;
		}
	}
        return 0;
}


But If I use an array of 10x10, everything seems to work properly. I was thinking of this : 'Did I hit up on the limit of the integer array?'

Do I need to use some other datatype? Uh, double/long/something of this sort ? I need to replicate a 2000x2000 matrix...

halluc1nati0n
Newbie Poster
24 posts since Nov 2009
Reputation Points: 10
Solved Threads: 0
 

EDIT:

It looks like the problems' not with the data-type, rather, it's with the way the random numbers are getting generated :)

NEW EDIT:

Turns out I was wrong. I'm thinking the datatype has overrun somehow when trying to simulate a 2000x2000 matrix.

halluc1nati0n
Newbie Poster
24 posts since Nov 2009
Reputation Points: 10
Solved Threads: 0
 

I have seen this problem before of large arrays on stack.

Just declare it as a global.

thomas_naveen
Junior Poster
168 posts since Jan 2010
Reputation Points: 136
Solved Threads: 36
 

Looks like you may have blown your stack. Your compiler probably sets an initial stack size which your array size exceeds. You should check you compilers linker settings to look for stack size settings and experiment with these until you find a size which works.

mattjbond
Junior Poster
149 posts since Mar 2010
Reputation Points: 66
Solved Threads: 21
 

I have seen this problem before of large arrays on stack.

Just declare it as a global.

Looks like you may have blown your stack. Your compiler probably sets an initial stack size which your array size exceeds. You should check you compilers linker settings to look for stack size settings and experiment with these until you find a size which works.

Thanks for the view guys. I'll let you know my progress ;)

halluc1nati0n
Newbie Poster
24 posts since Nov 2009
Reputation Points: 10
Solved Threads: 0
 
Thanks for the view guys. I'll let you know my progress ;)


nae woz. vote up useful info.

mattjbond
Junior Poster
149 posts since Mar 2010
Reputation Points: 66
Solved Threads: 21
 

Defined my array globally and it worked! :)

Kudos to ya guys!

halluc1nati0n
Newbie Poster
24 posts since Nov 2009
Reputation Points: 10
Solved Threads: 0
 

This question has already been solved

Post: Markdown Syntax: Formatting Help
You
View similar articles that have also been tagged: