•At any moment while a program is running you can trace the sequence of active methods from the currently executing statement back to main()
•That sequence is the method
invocation stack
•It’s called the call
stack in C - often in Java too (because it’s easier to say)
•The call stack is dynamic, changing as the program runs (the program itself is static - fixed at compile time)