You are viewing a single comment's thread. Return to all comments →
C
void reversePrint(SinglyLinkedListNode* llist) { if (llist == 0) return; reversePrint(llist->next); printf("%d\n", llist->data); }
Seems like cookies are disabled on this browser, please enable them to open this website
Print in Reverse
You are viewing a single comment's thread. Return to all comments →
C