Please check code

@rg361 You have made a slight mistake when you’re using while loop you have used condition j == 0 but it should be j >= 0
change your while loop like this and everything is fine.

while(j >= 0 && arr[j]>val)
				{
					arr[j+1]=arr[j];
					j--;
				}

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.