Skip to content
Related Articles
Open in App
Not now

Related Articles

C | Macro & Preprocessor | Question 5

Improve Article
Save Article
Like Article
  • Difficulty Level : Medium
  • Last Updated : 05 Feb, 2013
Improve Article
Save Article
Like Article




#include <stdio.h>
#define ISEQUAL(X, Y) X == Y
int main()
{
    #if ISEQUAL(X, 0)
        printf("Geeks");
    #else
        printf("Quiz");
    #endif
    return 0;
}

Output of the above program?
(A) Geeks
(B) Quiz
(C) Any of Geeks or Quiz
(D) Compile time error


Answer: (A)

Explanation: The conditional macro #if ISEQUAL(X, 0) is expanded to #if X == 0. After the pre-processing is over, all the undefined macros are initialized with default value 0. Since macro X has not been defined, it is initialized with 0. So, Geeks is printed.

My Personal Notes arrow_drop_up
Like Article
Save Article
Related Articles

Start Your Coding Journey Now!