- When main( ) passes
parameters to
A( )
and A( ) creates its
local variables using the
stack, we
will create
a stack frame for
A( ):
- Then
if A( ) passes
parameters to another function
B( )
and B( ) creates its
local variables using the
stack, we
will create
another stack frame
(on top of A's stack frame) for
B( ):
|