Open In App
Related Articles

C++ | Misc C++ | Question 6

Improve Article
Improve
Save Article
Save
Like Article
Like

Would destructor be called, if yes, then due to which vector?




#include <iostream>
#include <vector>
using namespace std;
  
class a
{
public :
    ~a()
    {
        cout << "destroy";
    }
};
int main()
{
   vector <a*> *v1  = new vector<a*>;
   vector <a> *v2  = new vector<a>;
   return 0;
}


(A) v1
(B) v2
(C) v1 and v2
(D) no destructor call


Answer: (D)

Explanation:

Quiz of this Question

Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape, GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out - check it out now!

Last Updated : 28 Jun, 2021
Like Article
Save Article
Similar Reads