Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CPP

insert into a vector more than once c++

std::vector<unsigned int> array;

// First argument is an iterator to the element BEFORE which you will insert:
// In this case, you will insert before the end() iterator, which means appending value
// at the end of the vector.
array.insert(array.end(), { 1, 2, 3, 4, 5, 6 });
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #insert #vector
ADD COMMENT
Topic
Name
8+6 =