Hi everyone .... explain the facilities provided by the C preprocessor with examples.
Answers
Answered by
5
Explanation:
The C preprocessor is a macro processor that is used automatically by the C compiler to transform your program before actual compilation. ... You can define macros, which are abbreviations for arbitrary fragments of C code, and then the C preprocessor will replace the macros with their definitions throughout the program
Answered by
2
The C preprocessor is a macro processor that is used automatically by the C compiler to transform your program before actual compilation. You can define macros, which are abbreviations for arbitrary fragments of C code, and then the C preprocessor will replace the macros with their definitions throughout the program
Similar questions