I looked around the web for this but I did not find an answer. If my class has a protected member declared as such: char * arr[3] = {"Blah", "Blah", "Blah"}
Would I need to delete this member in the destructor? If so, what is the correct syntax? Thank you!
deleteif you usenew. So no. This is an array literal that can be stored on the stack.char ** arr = new char*[3];?const char*.