Wanted to understand the difference between undef and define a macro as 0. Thanks.
|
|
defines the preprocessor token
Removes the definition of the preprocessor token For example:
|
|||||
|
|
One of them defines a macro in such a way that in certain contexts, occurrences of the macro identifier will be replaced with 0 by the preprocessor. The other removes any definition of a macro such that if the identifier is found in the same contexts, it is not replaced with anything by the preprocessor, it is instead left as is. For example, the preprocessor turns this:
into this:
But, it will turn this:
into this:
In the second example, the C compiler will encounter the identifer |
|||
|
|
|
in the first case the symbol will not be defined(#ifdef MACRO will not 'enter'), in the second case you have MACRO defined as '0' |
|||
|
|
|
A macro defined as 0 is still defined.
|
|||
|
|
|
The difference is that "undefined" isn't the same as "0" (depending on your usage). Used in a boolean context, e.g. However, once you check for some macro to be defined, there's a difference:
In general:
|
|||
|
|