C++2

PHOTO EMBED

Fri Sep 16 2022 08:46:35 GMT+0000 (Coordinated Universal Time)

Saved by @kodekutulisanku #c++

#include<iostream>
using namespace std;
class A
{
  ~A(){
    cout<<"Destructor called\n";
  }
};
int main()
{
    A a;
    return 0;
}
content_copyCOPY