All Questions
1 question
0
votes
1
answer
84
views
Recursive function to reverse linked list(Code Snippet Explanation) [closed]
Can someone please explain the code below:
void reverseList(node **href){
node *first;
node *rest;
if(*href == NULL){
return;
}
first = *href;
rest = first->next;
...