1.

What will be the output of the following C code?
 #include <stdio.h>
#define fun(p, q) " p ## q "
int main()
{
printf("%s n", fun(a, b));
}

A. a ## b
B. p ## q
C. Compilation Error
D. Nothing
E. None of these
Answer» C. Compilation Error


Discussion

No Comment Found

Related MCQs