Skip to content

Latest commit

 

History

History
10 lines (6 loc) · 427 Bytes

Memory Management.md

File metadata and controls

10 lines (6 loc) · 427 Bytes

MEMORY MANAGEMENT

STACK AND HEAP

Function Call Management in Stack:

  1. When a function is called, a new stack frame (also known as activation record) is created to hold its local variables and return address.
  2. The function's parameters, local variables, and return address are stored in this stack frame.

image