What will be the output of the following C code?
#include <stdio.h>
#define p( n,m ) printf( "%d", m##n )
int main()
{
p(3,4);
}
#include <stdio.h>
#define p( n,m ) printf( "%d", m##n )
int main()
{
p(3,4);
}A. Error
B. Junk value
C. 34
D. 43
Answer: Option D

Join The Discussion