What is the output of following program?
#include <stdio.h>
#define macro(n, a, i, m) m##a##i##n
#define MAIN macro(n, a, i, m)
int MAIN()
{
printf("GeeksQuiz");
return 0;
}
Compiler Error
GeeksQuiz
MAIN
main
This question is part of this quiz :
C Macro & Preprocessor