C Algorithm – Write a recursive function to print reverse of a Linked List
Given a linked list, print reverse of it using a recursive function. For example, if the given linked list is 1->2->3->4, then output should be 4->3->2->1.
Note that the question is only about printing the reverse. To reverse the list itself see this
Difficulty Level: Rookie

Algorithm
printReverse(head) 1. call print reverse for hed->next 2. print head->data[ad type=”banner”]
C Programming:
Output:
4 3 2 1
Time Complexity: O(n)
[ad type=”banner”]


