The declaration statement ____ declares milesAddr to be a pointer variable that can store the address of (that is, will point to) an integer variable.
A. int milesAddr&;
B. int milesAddr*;
C. int *milesAddr;
D. int &milesAddr;
查看答案
Using global variables except in very restricted and well-defined situations is a sign of extremely bad programming.
Self-referential functions are also called recursive functions.
Some (but not all) recursive functions can be written in a nonrecursive manner using an iterative solution.
Functions that call themselves are referred to as ____ functions.
A. nested
B. recursive
C. loop-back
D. rolling