Vidyalelo
C Programming · Q63

C Preprocessor

Programming · C Programming · question 63

Q63

What will be the output of the following C code? #include #define p( n,m ) printf( "%d", m##n ) #define q(a,b) printf("%d",a##b) main() p(3,4); q(5,6);

A.
4356
Answer
B.
3456
C.
4365
D.
3465

Answer: Option A

Solution

Answer: Option A
No explanation is given for this question Let's Discuss on Board