Memory Allocation

Get introduced to the different types of memory allocations in C.

We'll cover the following...

Static memory allocation


In static allocation, arrangement to allocate memory is done during compilation.


  • Actual allocation is done during
...