Answers for "vector int declare c++ size"

C++
-1

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;
Posted by: Guest on July-15-2020
-1

c++ vector initialize size

vector<Entry> array(1000);//size of 1000
Posted by: Guest on February-04-2021

Browse Popular Code Answers by Language