Question:If a two dimensional array arr[4][10](an array with 4 rows and 10 columns) is to be passed in a function, which of the following would be the valid parameters in the function definition?
A fn(int arr[4][10])
B fn(int arr[][10])
C fn(int arr[4][])
D fn(int (*fn)[13])
E None
+ AnswerA
+ Report