Take an array of 10 elements. Split it into middle and store the elements in two dfferent arrays
Example:
INITIAL array :
int a = {58,24,13,15,63,9,8,81,1,78}
After spliting :
int newArr1 = {58,24,13,15,63}
int newArr2 = {9,8,81,1,78}
Published By : Jaivik Shah