c++ vector size initialization code example
Example 1: initialize 2d vector of ints c++
auto M = 4;
auto N = 3;
auto default_value = 1;
std::vector<std::vector<int>> matrix(M, std::vector<int>(N, default_value));
Example 2: how to create a vector in c++
#include <vector>
using namespace std;
int main()
{
vector<int> vect;
vect.push_back(10);
for (int x : vect)
cout << x << " ";
return 0;
}
Example 3: how to initialize vector in c++ with all elements 0
vector<int> arr(10,0);
Example 4: c++ vector size
#include <vector>
int main() {
std::vector<int> myVector = { 666, 1337, 420 };
size_t size = myVector.size();
myVector.push_back(399);
size = myVector.size();
}
Example 5: c++ create vector of size
std::vector<int> arr(20);
for(int x = 0; x < 20; ++x)
arr[x] = x;
Example 6: declare vector of size n in c++
#include <vector>
auto n = 20
std::vector<int> arr(n);