I have an example code like this:
int var;
var = MACRO_A;
I expect the MACRO_A has been defined like this:
#define MACRO_A 1234
However, I can not find the MACRO_A defined anywhere in the source code, but I can build the code successfully, so what is the value of var at the end ?
The compiler is gcc.
That macro could have been passed during compilation with
-Doption.Output: