

MCQOPTIONS
Saved Bookmarks
1. |
What will be the output of the following C code?#include <stdio.h> #define system 25 int main() { int n = 25; #if system == n printf("Interview "); #endif #if system == 25 printf("Mania n"); #endif } |
A. | Interview |
B. | Interview Mania |
C. | Mania |
D. | Compilation Error |
E. | None of these |
Answer» D. Compilation Error | |