Back
Close

Computing with Data

elgeish
585.9K views

Dynamic Memory Allocation - Part II

int main() {
  Point *pp1 = new Point; // the default constructor
  Point *pp2 = new Point(1, 2); // an overloaded constructor

  delete pp1;
  delete pp2;
  
  return 0;
}
Create your playground on Tech.io
This playground was created on Tech.io, our hands-on, knowledge-sharing platform for developers.
Go to tech.io