Arrays in C++ may have several different types stored in them. |
||
To call a function with an array parameter, write the array argument as the array name followed by empty square brackets, as in f(a[], 7); (The first argument is an array a, the second is the size.) |
||
C++ arrays check for out-of-range index values. |
||
Consider the array declaration, int x[20];. There is no memory allocated for x[20]. |
OPTION D is correct.
Explanation:
Get Answers For Free
Most questions answered within 1 hours.