The #undef directive stands for undefined directive which is
used to undefine a macro that has been earlier defined by #define directive.
In other word, it negates the effect
of a #define directive that may have appeared earlier in the program.
Syntax:
#undef macro_name
Ex:
#define MAX 10
………….
……………..
#undef MAX
No comments:
Post a Comment