Advertisement
Guest User

3_2_4_1

a guest
Apr 8th, 2020
175
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.27 KB | None | 0 0
  1. using namespace std;
  2. #include <iostream>
  3. class test
  4. {
  5. public:
  6.  
  7.     test()
  8.     {
  9.         cout << "Constructor" << endl;
  10.     }
  11.     ~test()
  12.     {
  13.         cout << "Destructor" << endl;
  14.     }
  15. };
  16. int main()
  17. {
  18.     test *example = new test;
  19.     delete example;
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement