In my code, I'm using a lot of expressions like:
#if DEBUG
printf("Some text = %d", param);
#endif
I was wondering if it is possible to change it to macro like:
DEBUG("Some text = %d", param);
or at least to:
DEBUG("Some text =", param);
?