about .. Run time error..

Feb 11, 2009 at 1:11pm

I am using eclipse & mingw for c++ programming.
I usually handle (multiply, tensor product ) big size matrix such as 1000 * 1000 or the bigger size in my work.

in my current work, a certain run time error is occurred with following comment

"This application has requested the Runtime to terminate it in an unusual way.
Please contact the application's support team for more information."

Actually, I don't know what is the problem.

When the matrix size is small, my program works well.
so I think the problem may be about memory or resource..

By the way, c# program can complete same job ( handling same size matrix ), but
in c++ program, the run time error is occurred.

what may be the causes ?



Feb 11, 2009 at 1:40pm
closed account (z05DSL3A)
Let me put on my psychic hat...

Feb 11, 2009 at 2:18pm
wow try

you need an array of course use

datatype variable[];


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16


for(;;){
  if(id!=1000){
 gotoxy(,);
    cout<<
  }
  id=y;
 y++;

else{

 break;
}
getch();
}

you just need to supply the statements.

promise it will work... ok ok ok.
Last edited on Feb 11, 2009 at 2:22pm
Feb 11, 2009 at 7:35pm
Feb 13, 2009 at 5:04pm
This sounds like a stack overflow to me.
Topic archived. No new replies allowed.