Recent Post

What is dynamic memory allocation?

A dynamic memory allocation uses function such as malloc() or calloc() to get memory dynamically. If these function are used to get memory dynamically and the values returned by these function are assigned to pointer variables, such a way of allocating memory at run time is know as dynamic memory allocation.

 

No comments