Which of the following function declaration is correct?
A. int f(int a[3][], int rowSize);
B. int f(int a[][], int rowSize, int columnSize);
C. int f(int a[][3], int rowSize);
D. int f(int[][] a, int rowSize, int columnSize);
C. int f(int a[][3], int rowSize);
Computer Science & Information Technology
You might also like to view...
A Plain Text control allows limited formatting
Indicate whether the statement is true or false
Computer Science & Information Technology
In order to tell the user what happened in an exception you must
a) pop the exception b) toss the exception c) access Exception properties d) throw the exception
Computer Science & Information Technology