[Solved] Will this free all my **pointer memory? [closed]
That is hard to tell, because it depends on the way these pointers were allocated. But, as you have pointers 3 levels deep, I suppose it is not enough to free them. You should have a look at tools like valgrind which helps you to identify memory leaks. To explain a bit, char *** means … Read more