Hi there,
I made a linked list program to add, delete, add in the middle and delete from anywhere.
I'm searching to make a function to sort the string data that I have in lexicographic order.
Here's my struct:
struct node
{
char data[100];
struct node *previous; // Points to the previous node
struct node *next; // Points out to the next node
}*head, *last;
Any help?