Preprocessor output

后端 未结 5 994
灰色年华
灰色年华 2020-11-27 04:39

How do I view the output produced by the C pre-processor, prior to its conversion into an object file?

I want to see what the MACRO definitions do t

5条回答
  •  春和景丽
    2020-11-27 05:27

    You can also call the C Preprocessor directly.

    cpp infile outfile
    

    Check out man cpp for more info.

提交回复
热议问题