I have a multi dimensional char** array which I'm looking to safely delete without any leaks. I was doing some research and read somewhere that simply calling delete[] would suffice. I have my doubts.
Brilliant, makes sense since it's a pointer to a pointer. I guess if it was a normal multi dimensional array with just a pointer then the first delete[] in the loop wouldn't be necessary.