1.

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

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


Discussion

No Comment Found

Related MCQs