Advertisement
TwITe

Untitled

Dec 30th, 2017
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.31 KB | None | 0 0
  1. int main() {
  2.     try {
  3.         int arr[] = {1, 2, 3};
  4.         A* a;
  5.         C* c = new C();
  6.         cout << "Size of C object pointer: " << sizeof(c) << endl;
  7.         //delete c;
  8.         B b(arr);
  9.     }
  10.     catch (exception e) {
  11.         cout << "EXCEPTION SUCK";
  12.         throw runtime_error("error");
  13.     }
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement