Question: C Programming: Write a program that concatenates two linked lists of characters. The program should include function concatenate that takes pointers to both lists as
C Programming: Write a program that concatenates two linked lists of characters. The program should include function concatenate that takes pointers to both lists as arguments and concatenates the second list to the first list. In the main program, you need to create two linked lists of characters and fills them with the following values: ? The first linked list will have 3 nodes with the following characters: A,B, and C. ? The second linked list will also have 3 nodes with the following characters: D,E, and F. ? Call the function concatenate and send your first and second linked lists as arguments. ? Call the function printList and send your concatenated list as argument.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
