I know this is a bit remedial but I cant seem to understand my problem. It probably has something to do with the parameters in the arguments but im not sure.
void Input (int **&x, int *&arr, int &size1,int &size2, int a, int b)
{
cout << "Please enter 2 non-negative integer values: "<< endl;
cout << "1. ";
cin >> size1;
int checkVal(int size1, int a);
cout << "2. ";
cin >> size2;
int checkVal(int size2, int b);
void putArr(int **&x,const int &size1,const int &size2);
arr[0] = size1;
arr[1] = size2;
}
int checkVal (int &size, int x)
{
do{
if (size < 0)
cout << size << " is not a non-negative integer. Re-enter --> " << x << ". ";
cin >> size;
}while(size < 0);
return size;
}
void summation(int ***&y, int *&arr)
{
int *size = new int;
*size = **y[0] + **y[1];
y[2] = new int *(size);
*(arr + 2) = *size;
delete size;
}
int main()
{
int size, size1, size2;
int a = 1, b = 2;
int** x;
int*** y;
int** q;
int**** z;
int *arr[2];
allocArr(x, y, q, z);
Input(x, arr, size1, size2, a, b);
checkVal(size);
putArr(x, size1, size2);
summation(y, arr);
display(z);
}
The problem occurs with all three of these functions. Im quite confused. Thank you in advanced.
int ***&ycan simply beint*** y.