What Is Dynamic Array?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
A dynamic array is a data structure that can resize itself as needed while still providing index–based access to its elements. This type of array automatically grows and shrinks in size as elements are added and removed. Dynamic arrays are often compared to static arrays, but they offer advantages such as the ability to store more items without the need to pre–allocate memory.