Is there a way to make multiple vectors and name them each inside a while loop?
Example:
string name;
while(true){
cout << "Name the vector :" << endl;
cin >> name;
vector<string> ?name?;
}
I know this is bad code, just want to see how it would work Couldn't find anything online, thanks in advance.