1.

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

A. 10
B. 15
C. 1510
D. 1015
E. None of these
Answer» E. None of these


Discussion

No Comment Found

Related MCQs