Top

Discussion

#include 
#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

No answer description available for this question.

No comment is present. Be the first to comment.
Loading…

Post your comment