Created: 2023-08-21 13:08
Status: #concept
Subject: Programming
Tags: Dynamic Memory Allocation Memory Execution Stack Memory Leak Garbage
Memory Heap
The memory heap represents the
free
memory we can use to dynamically allocate and use in our programs.
- when we use up all the memory in the heap, our program will make
malloc
functions returnNULL
.