InterviewSolution
| 1. |
What Is C Preprocessor Mean? |
|
Answer» The C preprocessor is a tool which filters your source code before it is compiled. The preprocessor ALLOWS CONSTANTS to be named USING the #define notation.It is particularly useful for selecting machine dependent pieces of code for different computer types, ALLOWING a single program to be compiled and RUN on several different computers. The C preprocessor is a tool which filters your source code before it is compiled. The preprocessor allows constants to be named using the #define notation.It is particularly useful for selecting machine dependent pieces of code for different computer types, allowing a single program to be compiled and run on several different computers. |
|