Home » C Programming » Preprocessors » Question
  1. What is #include directive?
    1. #include is a pre-processing directive used to include the contents of a file into your program
    2. Tells the preprocessor to grab the text of a file and place it directly into the current file
    3. Statements are not typically placed at the top of a program
    4. All of above
    5. 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.



Your comments will be displayed only after manual approval.