for(i=0;i<n;i++)
{ b[i]=0;
for(j=0;j<m-1;j++)
{ if(a[i][j]>a[i][j+1])
{b[i]=-1;
break;}
}
}
↧
i want to know how this is runtime error sissegv
↧