Concept Flow - Call stack behavior
Start main program
Call function A
Call function B inside A
Call function C inside B
Function C returns
Function B returns
Function A returns
Program ends
The call stack tracks function calls in order. Each call adds a frame on top. When a function finishes, its frame is removed, returning control to the previous function.