Vidyalelo
C Programming · Q57

C Preprocessor

Programming · C Programming · question 57

Q57

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

A.
Error
B.
Junk value
C.
34
D.
43
Answer

Answer: Option D

Solution

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