Skip to content

Latest commit

 

History

History
15 lines (8 loc) · 556 Bytes

README.md

File metadata and controls

15 lines (8 loc) · 556 Bytes

Dynamic-Memory-Allocation

2016 Computer Programming Lesson Final project

Summary

In C, dynamic memory is allocated from the heap using some standard library functions. The two key dynamic memory functions are malloc() and free(). The malloc() function takes a single parameter, which is the size of the requested memory area in bytes. It returns a pointer to the allocated memory.

Language: C

Development Environvent: Visual Studio 2013

References

https://www.design-reuse.com/articles/25090/dynamic-memory-allocation-fragmentation-c.html