How do you override a defined macro? Ans. You can use the #undef preprocessor directive to undefine (override) a previously defined macro. Many programmers like to ensure that their applications are using their own terms when defining symbols such as TRUE and FALSE. Your program can check to see whether these symbols have been defined already, and if they have, you can override them with your own definitions of TRUE and FALSE. The following portion of code shows how this task can be accomplished: ... #ifdef TRUE /* Check to see if TRUE has been defined yet */ #undef TRUE /* If so, undefine it */ #endif #define TRUE 1 /* Define TRUE the way we want it defined */ #ifdef FALSE /* Check to see if FALSE has been defined yet */ #undef FALSE /* If so, undefine it */ #endif #define FALSE !TRUE /* Define FALSE the way we want it defined */ ... In the preceding example, the symbols TRUE and FALSE are checked to see whether they have been defined yet. If so, they are undefined, or overridden, using the #undef preprocessor directive, and they are redefined in the desired manner. If you were to eliminate the #undef statements in the preceding example, the compiler would warn you that you have multiple definitions of the same symbol. By using this technique, you can avoid this warning and ensure that your programs are using valid symbol definitions. - Study24x7
Social learning Network
28 Mar 2023 10:45 AM study24x7 study24x7

How do you override a defined macro? Ans. You can use the #undef preprocessor directive to undefine (override) a previously defined macro. Many programmers like to ensure that ...

See more

study24x7
Write a comment
Related Questions
500+   more Questions to answer
Most Related Articles