different ways to initialize vector c++ code example
Example 1: how to initialize vector in c++ with all elements 0
vector<int> arr(10,0);
Example 2: c++ initialize a vector
#include <bits/stdc++.h>
#include <vector>
using namespace std;
int main()
{
vector<int> vect{ 10, 20, 30 };
return 0;
}
Example 3: declare vectors c++
vector<int> vec;
vector<int> vec(4);
vector<int> vec(4, 42);
vector<int> vec(4, 42);
vector<int> vec2(vec);
Example 4: how to initialize vector
vector<int> vect{ 10, 20, 30 };
Example 5: how to initialize a vector in c++
std::vector<type> name;