If numAddr is a pointer, ____ means the variable whose address is stored in numAddr.
A. *numAddr
B. numAddr*
C. &numAddr
D. *&numAddr
查看答案
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.