Drop Down MenusCSS Drop Down MenuPure CSS Dropdown Menu

Thursday, March 12, 2015

What is #undef directive ?

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