Answers for "c print only in debug mode"

0

c print only in debug mode

#ifdef DEBUG
# define DEBUG_PRINT(x) printf x
#else
# define DEBUG_PRINT(x) do {} while (0)
#endif
Posted by: Guest on September-14-2020

Browse Popular Code Answers by Language