Difference between #define debug 0 and #undefine debug
Answers
Answered by
0
In case of # define debug 0, the value of the term debug is assigned as zero 0.
Wherever you find the word debug in a program, it will automatically be replaced with the number zero 0.
# undef debug is different, it does not assign any value to the term debug.
Wherever you find the word debug in a program, it will remain unchanged as the term debug itself.
Similar questions