MCQOPTIONS
Saved Bookmarks
| 1. |
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» C. MAIN | |