Hello!
If i have a pointer array of classes, e.g. MyClass *foo;
and if i try to delete this pointer delete [] foo; does it call a destructor of a class, or wahat happens? this is because i have another pointers in that class which are cleared in destructor.