Home / C Programming / C Preprocessor :: Discussion

Discussion :: C Preprocessor

  1. A preprocessor directive is a message from compiler to a linker.

  2. A.
    True
    B.
    False

    View Answer

    Workspace

    Answer : Option B

    Explanation :

    FALSE

    Example: #define symbol replacement

    When the preprocessor encounters #define directive, it replaces any occurrence of symbol in the rest of the code by replacement. This replacement can be an statement or expression or a block or simple text.


Be The First To Comment