store class specifier _____________ is a recommendation to the compiler to store a variable in one of the computer registers
a varible declared outside any blcock or function is a ____________ variable
for a local variable in a ftuction to retain its value between calls to the function, it must be ceclared with the _____ storage class specifier
the four pssible scopes of an identifier are __, ___, __, and _____
a function that calls itself directly or indirectly (i,e, through another function) is a _____ function
a recursive function typically has two components: one that provides a means for the recursion to terminate by testing for a ______ case and one that expresses the problem as a recursive call for a slghtly simpler problem than the original
in C++, it is possible to have various functions with the same ame that operate on different types or number of arguments. This is called function _____
the ________ enables access to a global variable with the same name as a variable in the current scope
the _______qualifie r is used to declare read-only variables
a function ______ enables a single function to be defined to perform a task on many different data types
a varible declared outside any blcock or function is a ____________ variable
for a local variable in a ftuction to retain its value between calls to the function, it must be ceclared with the _____ storage class specifier
the four pssible scopes of an identifier are __, ___, __, and _____
a function that calls itself directly or indirectly (i,e, through another function) is a _____ function
a recursive function typically has two components: one that provides a means for the recursion to terminate by testing for a ______ case and one that expresses the problem as a recursive call for a slghtly simpler problem than the original
in C++, it is possible to have various functions with the same ame that operate on different types or number of arguments. This is called function _____
the ________ enables access to a global variable with the same name as a variable in the current scope
the _______qualifie r is used to declare read-only variables
a function ______ enables a single function to be defined to perform a task on many different data types
Comment