Discussion :: C Preprocessor
-
Preprocessor directive #undef can be used only on a macro that has been #define earlier
Answer : Option A
Explanation :
True, #undef can be used only on a macro that has been #define earlier
Example: #define PI 3.14
We can undefine PI macro by #undef PI
Be The First To Comment