S
Super KHB
I am still trying to display 2D arrays with pointers.
My prof gave us the prototype
void DisplayArray (int (*)[int];
where inside the function DisplayArray(array)
*(*(array + row) + col) would be the same as array[row][col]
But it does not even accept the prototype. Please help!
My prof gave us the prototype
void DisplayArray (int (*)[int];
where inside the function DisplayArray(array)
*(*(array + row) + col) would be the same as array[row][col]
But it does not even accept the prototype. Please help!