For debug use, you can do something like this:
#ifdef DEBUG #define dprintf(...) printf(__VA_ARGS__) #else #define dprintf(...) #endif //Usage: dprintf("In debug mode."); //or char *foo = "foo"; dprintf("%d bar.",foo); // :) /*Edit reason :: *if you type dprintf("text") *it was giving error. *Now it doesn't give an error *:) */
:)
This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)