1.

What will be the output of the following C code?
#include <stdio.h>
#define max(p) p
int main()
{
int n = 1;
switch (n)
{
case max(2):
printf("Right... n");
case max(1):
printf("Wrong... n");
break;
}
}

A. Right...
B. Wrong...
C. Right... Wrong...
D. Compilation Error
E. None of these
Answer» D. Compilation Error


Discussion

No Comment Found

Related MCQs