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
AnswerB.
3456
C.
4365
D.
3465
Answer: Option A
Solution
Answer: Option A
No explanation is given for this question Let's Discuss on Board