C Preprocessor Question:
Download Questions PDF

The #include directive

a) Tells the preprocessor to grab the text of a file and place it directly into the current file
b) Statements are typically placed at the top of a program
c) both a & b
d) None of a & b

Answer:

c
(both a & b)
Explantion:The #include directive tells the preprocessor to grab the text of a file and place it directly into the current file and are statements are typically placed at the top of a program.

Download C Preprocessor Interview Questions And Answers PDF

Previous QuestionNext Question
The C-preprocessors are specified with _________symbol.
a) #
b) $
c) " "
d) None of the mentioned
The preprocessor provides the ability for _______________.

a) The inclusion of header files
b) The inclusion of macro expansions
c) Conditional compilation and line control.
d) All of the mentioned