// close an account with a given number
public void closeAccount(int id) {
}
this is a bank project... a customer account is created(array). i would like to know how to delete an array? let say: account number 185649 is found in array[15]. then i would like to delete this array decal the rest to the left.
array[15] is deleted.
so array[16] become array[15].... array [17] become array[16].
thanks in advance