When a C program is compiled, the compiler generates object files from the source code. These object files contain references to functions that are resolved by the linker when creating the final ...
This library provides a custom implementation of memory allocation (my_malloc) and deallocation (my_free) using a doubly-linked list of memory blocks. The primary goal is to manage memory dynamically, ...