0
votes
How to create multiple objects in the same function but without overwriting each other?
I would suggest a vector:
#include <vector>
using namespace std;
void foo()
{
vector<int> v;
v.push_back(1);
v.push_back(2);
v.push_back(3);
cout < …
