• + 0 comments

    here's my take to it

    void ReversePrint(Node *head)
    {if(!head)
        return;
        
     ReversePrint(head->next);
     printf("%d\n",head->data);
        
      }