Computer Science, asked by parastondwalkar3609, 1 year ago

Write a note on memory allocation in c programming

Answers

Answered by adikhan
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
Similar questions