Term
|
Definition
| If a function doesn’t return a value, the word __________ will appear as its return type. |
|
|
Term
|
Definition
| Either a function’s __________ or its ______ must precede all calls to the function. |
|
|
Term
|
Definition
| When only a copy of an argument is passed to a function it is said to be passed by _____. |
|
|
Term
|
Definition
| A(n) _______ eliminates the need to place a function definition before all calls to the function. |
|
|
Term
|
Definition
| A(n) ____ variable is defined inside a function and is not accessible outside the function. |
|
|
Term
|
Definition
| ___ variables are defined outside all functions and are accessible to any function within their scope. |
|
|
Term
|
Definition
| ____ variables provide an easy way to share large amounts of data among all the functions in a program. |
|
|
Term
|
Definition
| ____ local variables retain their value between function calls. |
|
|
Term
|
Definition
| The _________ statement causes a function to end immediately. |
|
|
Term
|
Definition
| When used as parameters, _______ variables allow a function to access the parameter’s original arguments. |
|
|
Term
|
Definition
| The _____ function causes a program to terminate. |
|
|
Term
|
Definition
| Two or more functions may have the same name, as long as their _______ are different. |
|
|
Term
|
Definition
| Each element of an array is accessed and indexed by a number known as a(n) _____. |
|
|
Term
|
Definition
| C++ has no array ______ checking, which means you can inadvertently store data past the end of an array. |
|
|
Term
|
Definition
| 15. If the size declarator of an array definition is omitted, C++ counts the number of items in the ____ to determine how large the array should be. |
|
|
Term
|
Definition
| When a character array is initialized with a string literal, the __________ is automatically included at the end. |
|
|
Term
|
Definition
| It’s best to think of a two-dimensional array as having ____ and ______. |
|
|
Term
|
Definition
| When a two-dimensional array is passed to a function the __________ size must be specified. |
|
|