• + 0 comments

    My Simplest C Solution:

    void reversePrint(SinglyLinkedListNode* head) {
        if(head->next) reversePrint(head->next);
        printf("%d\n",head->data);
    }