Vidyalelo
C Programming · Q52

C Preprocessor

Programming · C Programming · question 52

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
Answer

Answer: Option D

Solution

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