Yahoo Malaysia Web Search

Search results

  1. Aug 25, 2008 · Stack overflow occurs when your program uses up the entire stack. The most common way this happens is when your program has a recursive function which calls itself forever. Every new call to the recursive function takes more stack until eventually your program uses up the entire stack.

  2. A stack overflow is a type of buffer overflow error that occurs when a computer program tries to use more memory space in the call stack than has been allocated to that stack. The call stack, also referred to as the stack segment, is a fixed-sized buffer that stores local function variables and return address data during program execution.

  3. Stack Overflow is a question-and-answer website for computer programmers. It is the flagship site of the Stack Exchange Network. [2] [3] [4] It was created in 2008 by Jeff Atwood and Joel Spolsky. [5] [6] It features questions and answers on certain computer programming topics.

  4. Sep 18, 2018 · A stack overflow is a runtime error that happens when a program runs out of memory in the call stack. The stack overflow generally signals a problem in resource provisioning and has to be fixed in order to allow the program to run and use memory properly.

  5. Oct 18, 2008 · Stack overflow means exactly that: a stack overflows. Usually there's a one stack in the program that contains local-scope variables and addresses where to return when execution of a routine ends. That stack tends to be a fixed memory range somewhere in the memory, therefore it's limited how much it can contain values.

  6. Aug 31, 2021 · Stack overflow is an error in programming that a user-mode thread encounters when attempting to write more data but the memory block is running out of space to hold it. There are two types of overflow errors: the first one can immediately cause the program to crash.

  7. Jul 10, 2009 · Stack overflow occurs when the stack logical structure gets too full with recursive method calls without a base/terminating condition. In a typical program, your primitive variables eg, integer, float, etc are stored in physical memory whiles your method calls stored in a logical data structure such as a stack.