
der Stack
stack
In computer science, a data structure that works according to the Last-In-First-Out principle (LIFO). Elements are placed on top of the stack and removed from there as well.
Bei einem Funktionsaufruf werden die lokalen Variablen auf dem Stack gespeichert.
During a function call, the local variables are stored on the stack.


