+ 1
Dynamic array
Can someone explain to me what is the difference between array size and array capacity? Thanks
2 Respostas
+ 4
Instead of allocating a new element one at a time as the array grows. They allocate a group of them. Capacity is how many have been allocated. Size is how many are used.
+ 1
thank you sir