void resize(<type>&array[], int size)
Changes the size of the given array. If size
is greater than the current length of the array, the extra items at the end of the array may be uninitialized versions of the given type (for example, 0
, empty string, {0,0,0}
, etc.).
See also |