The difference between delete and delete[] in C++ [duplicate]

You delete [] when you newed an array type, and delete when you didn’t. Examples:

typedef int int_array[10];

int* a = new int;
int* b = new int[10];
int* c = new int_array;

delete a;
delete[] b;
delete[] c; // this is a must! even if the new-line didn't use [].

Leave a Comment