Concept Flow - Call stack behavior
Program starts
Function called
Push frame on stack
Execute function body
Function calls another function?
Yes→Repeat push frame
No
Function returns
Pop frame from stack
Return to caller or end program
This flow shows how each function call adds a frame to the stack, runs, then removes the frame when done.