Ask your own question, for FREE!
MIT 6.01SC Introduction to Electrical Engineering and Computer Science I 22 Online
OpenStudy (anonymous):

what is dynamic array in c++ ?? how we can use it ??

OpenStudy (anonymous):

A dynamic array is nothing simply an array data that can be resized.And the memory allocated for array is on heap instead of stack.We have to delete the array memory after using it,or in the end of the program it automatically deletes.The point is the memory allocated once is not destroyed as in case of static memory

OpenStudy (anonymous):

A dynamic array is an array are created on the heap and they need to be allocated and freed by you once you use them since they are not part of the stack frame... C++ does not have a away of handling garbage collection that's why one has free the memory.

Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!
Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!