How do you instruct your compiler to print the contents of the intermediate file showing the effects of the preprocessor?
Answer / Mohd. Asim Khan
You can instruct the compiler to print the contents of the preprocessed source file by using the '-E' flag. For example, in GCC, you would compile with the command 'g++ -E filename.cpp'. This will output the preprocessed source code to standard output.
| Is This Answer Correct ? | 0 Yes | 0 No |
What is a conversion constructor?
how to explain our contribution in the project?
What is difference between c++ 11 and c++ 14?
Can we change the basic meaning of an operator in c++?
Can I have a reference as a data member of a class? If yes, then how do I initialise it?
What is the purpose of template?
How many storage classes are available in C++?
What is difference between rand () and srand ()?
Is c++ a high level language?
What is a type library?
Why should you learn c++?
What do you mean by early binding?