#include<iostream>
using namespace std;
class animal
{
//random stuff here
}
//following stuff
int main()
{
animal animalGroup = new animal[5]
//already initilized all the animals already from the array
delete animalGroup[3]; // say if I wanted to delete the third one only
return 0;
}
Is it possible if I wanted to do so ?


















