Hello once again haha. Here we are again with Recursion you would think that by now I would have gotten it but I am having so much trouble with recursion.
So I have created two linked lists. I need to use a recursive function to do the following:
Assuming that list one isn't empty append list 2 to list one. return the pointer to list one. If list one is empty then return the pointer to list two.
I am using *list1 and *list2 etc in order to create the list. I created an array of various numbers and set them to the lists in order to populate the lists.