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;
}
Answer: B
No answer description available for this question.