I need to create a specific number instances of an object based on a variable. so the pseudo code looks kinda like this
for(int x; x < aInt; x++) {
//create object and initialize it
}
how would I do that and create a different object each time with a different name and memory location?