Is there any way to find out what is the value of #define Pre processor directive.
Example:
#define CONST 1
#if CONST
add(a,b);
#endif
Below are my questions.
- In the above code is there a way to find out what is the value of CONST in memory.
- Does CONST have a address where it is stored.
- Can we find out by looking into .map file and figure out the value of CONST.