I have this pointer to char with a collection of c-strings
d|o|g|\0|g|h|o|s|t|\0|r|e|a|p|e|r|\0
I am using qsort() method from c library O want to sort it ascending order
but I am comfused on how to short this by string not by char.
I have a char pointer that points to the start of the orginal pointer but what i need is to sort the original char pointer not the new char* and still sort the new char*. without having dangling pointers