suppose an array is initialized as s[]={1, 2, 3, 4, 5}

i would like to delete elements 1 to 3.. i.e 2, 3 and 5..

the remaining array has to look like s[]= {1, 5}

how can this be done?