Can we change the size of an array at run time ?
Answers
Answered by
0
Answer:
You can not change the size of your array at run time. An alternative is to create a new array which is larger than the existing one. Copy the elements of the existing array to the new array and delete the existing array.
Answered by
0
Answer:
You can not change the size of your array at run time. An alternative is to create a new array which is larger than the existing one. Copy the elements of the existing array to the new array and delete the existing array.
Similar questions