I am writing a macro like this
#define MACRO(a,b) #ifdef _DEBUG a+b #endif
But on compiling I get 2 errors : "Expected macro formal parameters
It seems to me that compiler is interpreting #ifdef and #endif as macro parameters
Any workaround for this problem? Or can we put precompilers inside a c++ macro
TI
Sunil