Respected Teacher, I tried implementing LinkedList insertion but when count exceeds it has to insert at end using length function, my code is not able to do so. Kindly help please.
When count exceeds EndInsertion not working
Hey @dhairyaostwal
You forgot to write return statement
if (pos > count(head))
{
insertAtEnd(head, d);
return; //ADD THIS
}
If this resolves your query then please mark it as resolved 
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.