in Algorithms
3,670 views
3 votes
3 votes
Which of the following function singatures are correct for passing a two dimensional array A of 10 rows and 10 columns to a function xyz() in C?

There should not be any compiler error or warning when you do so.

 

A. xyz(int A[])

B. xyz(int *A[])

C. xyz(int A[][10])

D. xyz(int A[10][])
in Algorithms
3.7k views

1 Answer

1 vote
1 vote
xyz(int A[])
by

Related questions