Answered step by step
Verified Expert Solution
Question
1 Approved Answer
-This program gene rates a linked list of names. After it generates the linked list Name this program one.c of names, it calls printLongest which
-This program gene rates a linked list of names. After it generates the linked list Name this program one.c of names, it calls printLongest which prints the name(s) in the list that have the greatest length. Your program should handle two or more names that have the same (greatest) length. Write printLongest. include #include #include typedef struct node ( char *name; struct node *next; l Node; void printLongest (Node int main( void) f char input [10241; Node *head - NULL; printf("Enter a name to add to the list : "); scanf("%s", input); while ( strcmp ( input , "quit") != 0 Node *ptr = (Node *) malloc ( sizeof (Node) ); ptr->name - (char *) malloc ( strlen (input) + 1 ); strcpy (ptr->name, input); ptr->next - head; head = ptr; printf("Enter another name or \"quit\" to exit : "); scanf("%s", input); printLongest (head); return 0
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started