Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CPP

Resize vector c++

resize (size_type n, const value_type& val);

The resize() method (and passing argument to constructor is equivalent to that)
  
will insert or delete appropriate number of elements to the vector to make it

given size (it has optional second argument to specify their value). 
 
PREVIOUS NEXT
Tagged: #Resize #vector
ADD COMMENT
Topic
Name
6+4 =