why we have written
delete [ ] name ;
rather than delete name;
like we wrote for the object .
In the Destructor video?
this is because name is an array
and to delete an array we have to write
delete [ ] name;
but for object we directly wrote
delete ob1;
object is deleted when destructor is called
we will not delete it explicitly
if you have more doubts regarding this feel free to ask
if your doubt is resolved mark it as resolved from your doubt section inside your course
I hope I’ve cleared your doubt. I ask you to please rate your experience here
Your feedback is very important. It helps us improve our platform and hence provide you
the learning experience you deserve.
On the off chance, you still have some questions or not find the answers satisfactory, you may reopen
the doubt.