-
What is #include directive?
-
- #include is a pre-processing directive used to include the contents of a file into your program
- Tells the preprocessor to grab the text of a file and place it directly into the current file
- Statements are not typically placed at the top of a program
- All of above
- None of these
Correct Option: D
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.