Question: A void C++ function named f receives one 2D int matrix consisting of 100 rows and 50 columns. Identify function distinct signatures that could be
A void C++ function named f receives one 2D int matrix consisting of 100 rows and 50 columns. Identify function distinct signatures that could be used for this function. Circle one for each answer. For those that are unacceptable, describe why it is an error.
-
void f(int M[100][50]) ACCEPTABLE UNACCEPTABLE If unacceptable, describe why:
-
void f(int M[][50]) ACCEPTABLE UNACCEPTABLE If unacceptable, describe why:
-
void f(int M[100][]) ACCEPTABLE UNACCEPTABLE If unacceptable, describe why:
-
void f(int M[][]) ACCEPTABLE UNACCEPTABLE
If unacceptable, describe why:
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
