void Array<BType, IType>::grow(int newS)
{
//assume thatyou have an pointor in Array<BType,IType>:
//Type* old,
Type *tmp=new Type[newS];
//copy the elements to the new one that on...