I have one array, say
String[] a={a,b,c,d,e,f,g} I want this array in second array but without the first element in the array, for example
String[] b{b,c,d,e,f,g} How do I achieve this?
I have one array, say
String[] a={a,b,c,d,e,f,g} I want this array in second array but without the first element in the array, for example
String[] b{b,c,d,e,f,g} How do I achieve this?