1 The first subscript of ever array in C is and the last is
1. The first subscript of ever array in C++ is ________________ and the last is _____________ less than the total number of locations in the array.
2. The amount of memory allocated to an array is based on the ____________ and the ______________ of location or size of the array.
3. Array initialization and processing is usually done inside a _____________.
4. Array used as arguments are always passed by ____________.
5. In passing an array as a parameter to a function that processes it, it is often necessary to pass a parameter that holds the _______________ of ___________ used in the array.
6. A string is an array of _________
7. Upon exiting a loop that reads values into an array, the variable used as a (n) _____________ to the array will contain the size of that array.
Solution
1. 0 and 1
2. type of data and number
3. loop
4. reference/pointer
5. number of elements
6. characters(char)
7. counter/iterator
