Dev C++ Process exited with return value 3221225725:

My code is compiling successfully but immediately after that I'm getting the message "Process exited with return value 3221225725".
The code is working fine in ideone.com
What should I do?

Thank you for your help in advance.
Apurva Kumar
can you give us the code?
Here is the code:
http://ideone.com/7KMmIx
I'd guess that the needed stack size exceeds the actual stack size.
~ 4 MB for the arrays
That's obvious, like coder777 said, you're using too much memory on the stack.
Try allocating them on the heap, or reduce their size.

Edit: On a second note, consider upgrading IDE. This may help you with other (future) problems you may find. Not with this one problem tho.
Last edited on
Thank you very much everyone for the quick response.
:-)
Topic archived. No new replies allowed.