previous | start | next

Preprocessor

C PreProcessor (cpp) is first called to handle #include's, #ifdef, #define, etc preprocessor statements in the source code.

The gcc command can execute the preprocessor and then stop without doing the other steps:

  gcc -E sumFirst.c    
   

This produces the file sumFirst.i



previous | start | next