|
-
September 3rd, 2009, 11:43 AM
#1
Stack Overflow happening but no exception thrown
Hi
I am learning to debug with Visual Studio and created a program to throw a stack overflow exception.
When I run it in the debugger it does throw but when I just run it from the command line no exception is thrown. Why?
void Example6_1();
void Example6()
{
Example6_1();
}
void Example6_1()
{
Example6();
}
int main()
{
Example6();
return 0;
}
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|