Hi,
Im using Borland BulderX, and my program crashes when I declare a large array.
For example:
int main() {
int arra[2000][20][20];
cout << "DOES NOT REACH HERE!\n";
}
The program compiles alright but exits as soon as it hits the array declaration. I would guess there is some kind of a memory cap.
I really hope someone could help me out.
Thanks
raven001
Im using Borland BulderX, and my program crashes when I declare a large array.
For example:
int main() {
int arra[2000][20][20];
cout << "DOES NOT REACH HERE!\n";
}
The program compiles alright but exits as soon as it hits the array declaration. I would guess there is some kind of a memory cap.
I really hope someone could help me out.
Thanks
raven001