binamin binkabinka.hashnode.dev·Aug 8, 2023Memory Allocation.There are different types of dynamic memory allocation. These include. a. The Malloc() function b. Calloc () function c. Relloc() function d. Free() function For this blog, I would focus on the first two that's Malloc and Calloc functions. There are ...2 likes·40 readsdynamic memory allocation
Jameliajdeveloper.hashnode.dev·Mar 16, 2023language C - malloc, free, callocLet's first explain dynamic memory allocation all time in general use variables, and arrays are fixed size but what's you should do if you don't know the size of the array? have declared it? but if depends on another variable? that's the reason to us...41 readsC
Aniruddha Mukherjeeamkhrjee.hashnode.dev·Oct 17, 2022Dynamic Memory Allocation in CIn the context of of C family of languages, the word dynamic generally refers to doing stuff manually. And, in the case of Dynamic Memory Management, it rightly refer to performing manual memory management for a given set of data. Programs are essen...1 like·30 readsmalloc