Heap Memory Management

# Introduction In this challenge, you will learn how to use the `new` and `delete` keywords to manage heap memory in C++. You will define an integer pointer variable, allocate memory space for an `int` type using `new`, store a value in the allocated memory, and then release the memory using `delete`.

|60 : 00

Click the virtual machine below to start practicing