how to make a vector code example
Example: how to make a vector in c++
#include <vector>
using namespace std;
int main(){
vector<int> v;
//vector<type> name
return 0;
}
#include <vector>
using namespace std;
int main(){
vector<int> v;
//vector<type> name
return 0;
}