Top "Stack-overflow" questions

NOT THIS WEBSITE!

How do I use OData Expand like a SQL join?

I'm trying to figure out how to accomplish the equivalent of: select * from Users u inner join Comments c on …

sql stack-overflow odata
Explain stack overflow and heap overflow in programming with example?

Possible Duplicate: What is a stack overflow error? Can any one tell me how and why stack overflow and heap …

c stack-overflow heap-memory
How do I increase the stack size for Apache running under Windows 7?

I think I am getting stack overflows running a cakePHP application on an Apache server under Windows 7.

apache stack-overflow windows-7-x64
*** stack smashing detected *** Aborted (core dumped)

I'm trying to debug a program that gives the error: Abort (core dumped). Valgrind detects a stack smashing and gives …

c valgrind stack-overflow coredump stack-smash
java.lang.StackOverflowError while using a RegEx to Parse big strings

This is my Regex ((?:(?:'[^']*')|[^;])*)[;] It tokenizes a string on semicolons. For example, Hello world; I am having …

java regex stack-overflow
Maven compilation: Failure executing javac

Here is an exception we get when trying to compile a freshly checked out code under Windows Server 2003 with Maven 2.2.1 …

java maven-2 stack-overflow
Using Recursion in C#

Are there any general rules when using recursion on how to avoid stackoverflows?

c# recursion stack-overflow
How to change stack size for a .NET program?

I have a program that does recursive calls for 2 billion times and the stack overflow. I make changes, and then …

.net resize stack stack-overflow
Causing a buffer Overflow with fgets

I'm experimenting with buffer overflows and try to overwrite the return address of the stack with a certain input of …

c buffer overflow stack-overflow fortify-source
Explanation of R: options(expressions=) to non-computer scientists

I have written a recursive function of the form foo=function(vars,i=2){ **do something with vars** if(i==length(…

r recursion stack-overflow