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
You can also call the C Preprocessor directly.
cpp infile outfile
Check out man cpp for more info.
man cpp