int del(int a[],int end,int k) { int i,j; for(i=j=0;i<end;++i) { if(a[i]!=k) { a[j++]=a[i]; } } return j; }