Warning: implode(): Invalid arguments passed in /www/wwwroot/jobquiz.info/mdiscuss.php on line 336 Which of the following are correct preprocessor directives in C? 1: #ifdef 2: #if 3: #elif 4: #undef ?->(Show Answer!)
1. Which of the following are correct preprocessor directives in C? 1: #ifdef 2: #if 3: #elif 4: #undef
Ask Your Doubts Here
Comments
By: guest on 01 Jun 2017 06.00 pm
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.