how to new a vector c++ code example
Example 1: how to create a vector in c++
#include <vector>
std::vector<type> name;
std::vector<double> lol = {66.666, -420.69};
Example 2: how to make a vector in c++
#include <vector>
using namespace std;
int main(){
vector<int> v;
return 0;
}
Example 3: c++ initialize a vector
#include <bits/stdc++.h>
#include <vector>
using namespace std;
int main()
{
vector<int> vect{ 10, 20, 30 };
return 0;
}
Example 4: declare vector of size n in c++
#include <vector>
auto n = 20
std::vector<int> arr(n);