What are Dynamic Arrays?

Technology CommunityCategory: ArraysWhat are Dynamic Arrays?
VietMX Staff asked 3 years ago

dynamic array is an array with a big improvement: automatic resizing.

One limitation of arrays is that they’re fixed size, meaning you need to specify the number of elements your array will hold ahead of time. A dynamic array expands as you add more elements. So you don’t need to determine the size ahead of time.