All Questions
1 question
2
votes
1
answer
3k
views
Does having so many macros (#define) increase compilation time due to prolonged pre-processing?
In a very simplistic way, I understand:
"Compilation" = "Pre-processing" + "Parsing" + "Linking" + "Executable"
All the macros and other such pre-processing directives are taken care at the "Pre-...