Skip to content

A console application to simulate allocation and deallocation of dynamic memory also known as Heap memory.

Notifications You must be signed in to change notification settings

MohamedCheour98/Dynamic-Memory-Simulation

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Dynamic-Memory-Simulation

This is a C application that allows the user (in this case a software engineer) to allocate memory dynamically using malloc() and free().

It simulates heap memory which is the portion of RAM (Random Access Memory) where dynamically allocated memory resides (memory allocated via malloc). Memory allocated from the heap will remain allocated until one of the following occurs:

  1. The memory is freed using free().
  2. The program terminates.

About

A console application to simulate allocation and deallocation of dynamic memory also known as Heap memory.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages