A declaration statement that specifically contains the word ____ is different from every other declaration statement in that it does not cause the creation of a new variable by reserving new storage for the variable.

A. auto
B. static
C. extern
D. register


Answer: C

Computer Science & Information Technology

You might also like to view...

Answer the following statements true (T) or false (F)

1) Exceptions always are handled in the function that initially detects the exception. 2) Accessing a nonexistent object attribute causes an AttributeError exception. 3) Accessing an out-of-bounds sequence subscript causes the interpreter to raise an exception. 4) A try statement must contain one or more clauses. 5) If a finally clause appears in a function, that finally clause is guaranteed to exe- cute.

Computer Science & Information Technology

When you create parallel arrays, each array must be of the same data type.

Answer the following statement true (T) or false (F)

Computer Science & Information Technology

ScreenTip tabs appear on the Ribbon only when you select certain items in a file, and they contain commands related to that item.

Answer the following statement true (T) or false (F)

Computer Science & Information Technology

The following code contains a common error. What is it?     float x = 123.45;     printf("%d\n", x);

A. The conversion code is wrong B. The newline delimiter is wrong C. The width is not specified D. The parameter is a value and it should be an address E. The wrong function is being used

Computer Science & Information Technology