Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

There is a weird segmentation fault error. The following code runs fine

#include <stdlib.h> 
#include <stdio.h>
main()
    {
    int matrixSize = 1000;
    int i,j;

    double a[matrixSize][matrixSize];
    for (i = 0; i < matrixSize; i++)
        for (j = 0; j < matrixSize; j++)
            a[i][j] = rand() % 10;

        double b[matrixSize][matrixSize];
    for (i = 0; i < matrixSize; i++)
        for (j = 0; j < matrixSize; j++)
            b[i][j] = rand() % 10;
    return 0;
}

But when I try to initialize one more 2D array, I get "segmentation fault" exception:

#include <stdlib.h>
#include <stdio.h>
main()
{
    int matrixSize = 1000;
    int i,j;

    double a[matrixSize][matrixSize];
    for (i = 0; i < matrixSize; i++)
        for (j = 0; j < matrixSize; j++)
            a[i][j] = rand() % 10;

    double b[matrixSize][matrixSize];
    for (i = 0; i < matrixSize; i++)
        for (j = 0; j < matrixSize; j++)
            b[i][j] = rand() % 10;

    return 0;
}

What is the potential cause?

share|improve this question
6  
The two code examples are the same. – KennyTM Dec 19 '11 at 1:24
why is this marked as c++ ? – shuttle87 Dec 19 '11 at 1:32
I removed the C++ tag. – tpg2114 Dec 19 '11 at 1:42

2 Answers

You are exceeding the stack size most likely.

In the terminal you are using to run this, try typing

ulimit -s unlimited

and re-run, assuming you are on a Linux system using bash (or sh).

If you have to use arrays that size, you can make them dynamic so they are on the heap rather than the stack if changing the stack size is problematic for some reason.

share|improve this answer

As tpg2114 says allocating as large matrices is not a good idea. Easiest is to allocate it like that

double (*a)[matrixSize] = malloc(sizeof(double[matrixSize][matrixSize]));
.
free(a);

Then you can continue to use your nested for loops for initialization without problems as before.

NB:

  • since you use a variable for the dimensions your matrix is technically a variable length array, that is only available with C99
  • your definition for main is not conforming to the standard. In your case you should use int main(void) { ... }. since a conforming compiler should capture this, it looks that you don't use the correct options for your compiler or that you ignore warnings that he gives you.
  • since they are representing sizes, your variables matrixSize, i and j should be of type size_t and not int.
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.