about .. Run time error..


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 ?



closed account (z05DSL3A)
Let me put on my psychic hat...

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
This sounds like a stack overflow to me.
Topic archived. No new replies allowed.