Answers for "resize a vector and initiallize it"

C++
0

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).
Posted by: Guest on May-10-2021

Browse Popular Code Answers by Language