cplusplus
.com
TUTORIALS
REFERENCE
ARTICLES
FORUM
C++
Tutorials
Reference
Articles
Forum
Forum
Beginners
Windows Programming
UNIX/Linux Programming
General C++ Programming
Lounge
Jobs
Forum
General C++ Programming
An unhandled exception of type 'System.S
An unhandled exception of type 'System.StackOverflowException' occurred in classdenemesi.exe
Oct 29, 2012 at 11:43am UTC
noktalivirgul
(53)
what can be the reason i got this error?
Oct 29, 2012 at 11:57am UTC
Peter87
(11234)
Stack overflow means that you have run out of stack memory. The problem could be that you have allocated some huge array on the stack that doesn't fit, or that you are calling some function with very deep or infinite recursion.
Oct 29, 2012 at 12:10pm UTC
noktalivirgul
(53)
yesı used a large array. But how can i solve this problem now? should i use 2Dvector instead array? would i see the same problem again?
Oct 29, 2012 at 12:23pm UTC
Moschops
(7244)
You can use a proper container such as a vector, or you can stick with what you have but make it using
new
.
Topic archived. No new replies allowed.