Insertion sort- segmentation error, otherwise working fine in other IDE

code:
include iostream
using namespace std;
int main() {
int n;
cin>>n;
int arr[100];
for(int i=0;i<n;i++)
cin>>arr[i];

int i,j,current;

//int arr[]={10,2,3,4,5};

for(i=1;i<n;i++)
{
current=arr[i];
j=i-1;
while(arr[j]>current && j>=0)
{
arr[j+1]=arr[j];
j–;
}
arr[j+1]=current;
}

//cout<<“sorted array:\n”;
for(i=0;i<n;i++)
cout<<arr[i]<<" ";
return 0;
}

Hey @vashishthkuntal.gajjar2019 share your code using ide.codingblocks.com so that i can help you in solving your issue.

Your code works fine, it will pass all test cases

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.