_______________ is the preprocessor directive which is used to end the scope of #ifdef.

_______________ is the preprocessor directive which is used to end the scope of #ifdef. Correct Answer #endif

The #ifdef preprocessor directive is used to check if a particular identifier is currently defined or not. If the particular identifier is defined, the statements following this preprocessor directive are executed till another preprocessor directive #endif is encountered. #endif is used to end the scope of #ifdef.

Related Questions

For each #if, #ifdef, and #ifndef directive.
What is the result of the #ifdef DEBUG directive if the DEBUG macro is defined?
In C, how do you use the #ifdef directive to conditionally include code if a macro is defined?
In C, what is the purpose of the #ifdef directive?