0
What is dynamic arrays?
3 Answers
+ 2
When you allocate the size of array using functions like malloc and calloc at run time it is known as dynamic array.
+ 1
Arrays that doesn't have fixed length, you can add elements even if the amount is over the initial length, the dynamic array will grow.