Jyotiprakash Mishrablog.jyotiprakash.org·Dec 28, 2023Bigger Example 1: Custom Memory AllocatorQuestion: Develop a basic memory allocator that mimics the functionality of malloc() and free() in C. The allocator should manage a pool of memory and provide functions for allocating and freeing memory blocks. Implement features such as coalescing a...C Programmingmemory allocator