how to use vector arrays in c++ code example
Example 1: c++ array vs vector
//arrays have fixed size, but vectors don't
Example 2: how to make a vector in c++
#include <vector>
using namespace std;
int main(){
vector<int> v;
//vector<type> name
return 0;
}