In software, a stack overflow occurs when too much memory is used on the call stack.
The call stack contains a limited amount of memory, often determined at the start of the program. The size of the call stack depends on many factors, including the programming language, machine architecture, multi-threading, and amount of available memory.
When a program attempts to use more space than is available on the call stack (that is, when it attempts to access memory beyond the call stack's bounds, which is essentially a buffer overflow), the stack is said to overflow, typically resulting in a program crash.
http://en.wikipedia.org/wiki/Stack_overflow
For the Stack Overflow website, see stackoverflow.com.
