Top

Discussion

What is the output of following program?

#include 
#define macro(n, a, i, m) m##a##i##n
#define MAIN macro(n, a, i, m)
 
int MAIN()
{
    printf("GeeksQuiz");
    return 0;
}

 

  • A.Compiler Error
  • B.GeeksQuiz
  • C.MAIN
  • D.main

Answer: B

No answer description available for this question.

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

Post your comment