What Is a “Preprocessor directives”?
Answers
Answered by
1
In computer science, a preprocessor is a program that processes its input data to produce output that is used as input to another program. The output is said to be a preprocessed form of the input data, which is often used by some subsequent programs like compilers.
Answered by
2
Answer:
Preprocessor directives, such as #define and #ifdef , are typically used to make source programs easy to change and easy to compile in different execution environments. Directives in the source file tell the preprocessor to take specific actions. Preprocessor lines are recognized and carried out before macro expansion.
Similar questions