Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CPP

c++ create vector of size

// create a vector with 20 integer elements
std::vector<int> arr(20);

for(int x = 0; x < 20; ++x)
   arr[x] = x;
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #create #vector #size
ADD COMMENT
Topic
Name
3+6 =