题目内容

Once created, local static variables remain in existence for the life of the program.

查看答案
更多问题

The initialization of static variables (both local and global) is done only once, when the program is first compiled.

Unlike automatic variables that can be initialized by either constants or expressions using both constants and previously initialized variables, static variables can only be initialized using constants or constant expressions.

You can take the address of a register variable using the address operator &.

Where and how long a variable’s storage locations are kept before they are released can be determined by the ____ of the variable.

A. storage class
B. time-dimension
C. scope
D. data type

答案查题题库