Q52
What will be the output of the following C code? #include #define p( m ) printf( "t*" #m " = %s", t##m ) char tram[]="tram"; int main() int x; x=p(ram);
A.
error
B.
tram=tram
C.
t*ram=t*ram
D.
t*ram=tram
AnswerAnswer: Option D
Solution
Answer: Option D
No explanation is given for this question Let's Discuss on Board