If the array defined as int myArray[20][10] is being passed to a function named
displayArray, along with information on the number of rows and number of columns,
which of the following function calls is correct?
a) displayArray(int myArray, 20, 10);
b) displayArray(myArray, 20, 10);
c) displayArray(myArray[20][10]);
d) displayArray(myArray[ ][ ], 20, 10);