Which one of the following is a valid signature of a function with an integer two- dimensional array parameter of size 10 x 10? Ovoid func(int arr[][]) void func(int arr[10] []) void func(int arr[] [10]) void func(int arr[10, 10])
Which one of the following is a valid signature of a function with an integer two- dimensional array parameter of size 10 x 10? Ovoid func(int arr[][]) void func(int arr[10] []) void func(int arr[] [10]) void func(int arr[10, 10])
Related questions
Question
C++
Expert Solution
This question has been solved!
Explore an expertly crafted, step-by-step solution for a thorough understanding of key concepts.
Step by step
Solved in 3 steps