Linked List-K append


can anyone please tell me what is wrong in my code, some elements are getting removed in the output

@Parikalp10 two mistakes:

  1. you are making LL in reverse order.

  2. you are returning new head but not receiving it when calling from main(),
    so do this
    node *newhead = append(n,k%n,head);

    print(newhead);

I hope I’ve cleared your doubt. I ask you to please rate your experience here
Your feedback is very important. It helps us improve our platform and hence provide you
the learning experience you deserve.

On the off chance, you still have some questions or not find the answers satisfactory, you may reopen
the doubt.