Mar (louipagman)

Race #1761

View Pit Stop page for race #1761 by louipagmanGhost race

View profile for Mar (louipagman)

Official speed 124.33 wpm (57.14 seconds elapsed during race)
Race Start July 6, 2021 4:30:37am UTC
Race Finish July 6, 2021 4:31:34am UTC
Outcome No win (3 of 3)
Accuracy 97.0%
Points 238.30
Text #4940141 (Length: 592 characters)

Both the stack and the heap are parts of memory that are available to your code to use at runtime, but they are structured in different ways. The stack stores values in the order it gets them and removes the values in the opposite order. This is referred to as last in, first out. Think of a stack of plates: when you add more plates, you put them on top of the pile, and when you need a plate, you take one off the top. Adding or removing plates from the middle or bottom wouldn't work as well! Adding data is called pushing onto the stack, and removing data is called popping off the stack.