createa vector array in c++ code example
Example 1: 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 2: how to create a vector in c++
#include <vector>
std::vector<type> name;
std::vector<double> lol = {66.666, -420.69};
Example 3: how to initialize vector in c++ with all elements 0
vector<int> arr(10,0);
Example 4: declare vector of size n in c++
#include <vector>
auto n = 20
std::vector<int> arr(n);