closed by
267 views
0 votes
0 votes
closed with the note: i got it
void Do(struct*node head)

{

      if(!head)return;

     printf("%d",head->data);

    Do(head->next);

}

 so which statement follow which inside bracket i am getting doubt??

if we give 2->4->8->5 then what it will print??
closed by

No related questions found