Hello
can someone help me to complete a program that allows the user to input names
and for the output it should prints the names in alphabetical order.
starting would be something like that.
#include <stdio.h>
struct sort_names
{
char node_str [80];
struct sort_names *next;
};