Hello.
Which is the difference between "delete" and "delete []".For example if i declare
int **p=new int *[6]; and then i use "delete p" or "delete p[]" .The compiler returns me no error for each of the options i choose (but there must be some reason of using delete p and not delete [] p).