To use a stored address, C provides us with an indirection operator, ____.
查看答案
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.