Arrays

Matching exercise

    
Match the items on the right to the items on the left.
the maximum number of dimensions an array in C
int (*ptr)[10];
Array passed as an argument to a funtion is interpreted as
The parameter passing mechanism for an array is
you can pass arrays to functions
Theoratically no limit.
ptr is a pointer to an array of 10 integers
Address of the first element of the array
call by reference
but you cannot return arrays from functions.