(Solved): Consider the code in the clear_one function.
void clear_one(int m[N][N][N])
{
int i, j, k;
...
Consider the code in the clear_one function.
void clear_one(int m[N][N][N])
{
int i, j, k;
for (i = 0; i < N; i++)
for (j = 0; j < N; j++)
for (k = 0; k < N; k++)
m[i][j][k] = 0;
}
What type of reference pattern does the clear_one function have?