How would I go about doing three levels of indirection with this array structure? I've never really messed with the array container and cannot find any examples for what I'm trying to do. Any help would be appreciated. I'm getting a constant value for size error, when trying to pass in SIZE.
1 2 3 4
int foo(int &row, int &column, const size_t &SIZE)
{
array<int, SIZE> ***s = new array< int, SIZE >**;
}