// Delete is like 'free' in C. // If you have a dynamic variable, you need to free its memory (delete it) using the delete keyword. int arr = new int[7]; delete arr[];