/*----------------------------------------------------------------------------- * HTBLA-Leonding *----------------------------------------------------------------------------- * Title: Simple Memory Manager. * Author: */;/* *----------------------------------------------------------------------------- * Description: * The main application that uses memory manager. *----------------------------------------------------------------------------- */ #include /** * Allocate and free memory in various combinations, * print statistics after each step, * dump allocated units and memory content initially, in between and at the end * of the program. */ int main(int argc, char *argv[]) { /* Your implementation here. */ }