0
What is pre processor
2 Réponses
+ 3
pre processor is the very first step of compilation. It includes the code of header files mentioned in the code.
eg. #include<stdio.h>
the pre-processor will replace this line with its respective code.
+ 1
Another usage besides including are directives which can help you to develop multi-platform applications - #ifdef etc.