Glossary

call stack

a stack of frames, one per active function call. Each frame holds the function's local variables, parameters, and the return address (where to resume when the function finishes).

Learn More

Related Terms