Write a note on memory allocation in c programming
Answers
Answered by
0
To solve this issue, you can allocate memorymanually during run-time. This is known as dynamic memory allocation in C programming. There are 4 library functions defined under <stdlib.h> makes dynamicmemory allocation in C programming. They are malloc() , calloc() , realloc() and free() .
source : programiz
source : programiz
Similar questions