Writing method to insert a[] into numbers[] at a position stored in variable "location".
public boolean insertArray(int location, double a[])
{
if (length != MAX_CAPACITY)
{
numbers[location] = a[];
length++;
return true;
}
return false;
}
Is it possible to pass through an array?