Convert C/C++ program to Preprocessor code
Last Updated :
29 Aug, 2018
Improve
We use g++ compiler to turn provided Cpp code into preprocessor code. To see the preprocessor code generated by the CPP compiler, we can use the ā-Eā option on the command line:
Preprocessor include all the # directives in the code. and also expands MACRO function.
CPP
Running the command:
Syntax: g++ -E filename.cpp
// MACRO named MAX initialism to 10
#define MAX 10
int main()
{
int a = MAX, b = MAX;
// Add two values.
int c = a + b;
return 0;
}
g++ -E geeks.ccOutput :
int main() { int a = 10, b = 10; // Add two values. int c = a + b; return 0; }