Discussion :: C Preprocessor
-
Which of the following are correct preprocessor directives in C?
1: #ifdef 2: #if 3: #elif 4: #undef
Answer : Option D
Explanation :
The macros #ifdef #if #elif are called conditional macros.
The macro #undef undefine the previosly declared macro symbol.
Hence all the given statements are macro preprocessor directives.
Be The First To Comment