Suppose that I have the following c
function:
int MyFunction( const float arr[] )
{
// define a variable to hold the number of items in 'arr'
int numItems = ...;
// do something here, then return...
return 1
}
How can I get into numItems
the number of items that are in the array arr
?