Back
Close

Computing with Data

elgeish
585.9K views

Dynamic Memory Allocation - Part III

int main() {
  int n = 2;
  // allocates memory for an array of n objects of type point
  Point *pp = new Point[n];

  delete[] pp; // frees up a dynamically-allocated array
  
  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