I have a C++ code with a lot of preprocessor instructions. I want to see how this was handled, where can I see it in the visual studio?
c c++ debugging visual-studio-2005 preprocessor
You must write cl.exe
to pass commands from Visual C++.
Options for viewing preprocessed files in cl.exe
include the following:
/E: stdout preprocessing (similar to GCC's -E
option)
/P: file preprocessing
/EP: stdout preprocessing (#lineless form)
© 2025 OneMinuteCode. All rights reserved.