11.
|
A function that returns no values
to the program that calls it is _____
|
|||||||
Answer: Option B
|
12.
|
The keyword used to define a
structure is _____
|
|||||||
Answer: Option C
|
13.
|
Which of the following statements
is false?
|
|||||||||
Answer: Option D
|
14.
|
Header files often have the file
extension _____
|
|||||||
Answer: Option A
|
15.
|
The #ifndef directive tests to see
whether ________
|
|||||||
Answer: Option A
#ifndef checks whether the given
token has been #defined earlier in the file or in an included file; if not,
it includes the code between it and the closing #else or, if no #else is
present, #endif statement#ifndef is often used to make header files
idempotent by defining a token once the file has been included and checking
that the token was not set at the top of that file.
|