17-simple-memory-management/mem_man_app.c
github-classroom[bot] 177826b1a0
Initial commit
2025-03-05 22:19:03 +00:00

25 lines
No EOL
769 B
C

/*-----------------------------------------------------------------------------
* HTBLA-Leonding
*-----------------------------------------------------------------------------
* Title: Simple Memory Manager.
* Author: */<your name>;/*
*-----------------------------------------------------------------------------
* Description:
* The main application that uses memory manager.
*-----------------------------------------------------------------------------
*/
#include <stdio.h>
/**
* 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. */
}