Which are preprocessor directives?ANS: #include & #define

Showing Answers 1 - 1 of 1 Answers

puneet

  • Sep 6th, 2006
 

As its name suggests,the preprocesser processer is a program which process the source code before the actual compilation of the source code takes place..if there is any macro template in the program,it is replaced by its macro expansion.ex:- #define pi 3.14 so where u use pi in the program ,it will be relaced by its corresponding expansion,i.e its value 3.14(here)here #define is the preprocesser directive,just like other directives #include ,#ifdef etc.

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions