I would like to know if it's possible to generate multiple objects from a class (person for example)
without having to name each object :
person p1(arguments);
the number of instances is unknown (the user of my program has the choice to add as many instances as he likes but each one with a different name and phone number)
thanks