If I defined a macro:
#define FOO
And in the code I check it like:
#if FOO
//1
#else
//2
#endif
Which branch will it go? Will the result be different by different compilers? What is the FOO
value in the #if FOO
?
If I defined a macro:
#define FOO
And in the code I check it like:
#if FOO
//1
#else
//2
#endif
Which branch will it go? Will the result be different by different compilers? What is the FOO
value in the #if FOO
?