Vidyalelo
C Programming · Q83

C Preprocessor

Programming · C Programming · question 83

Q83

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

A.
t=10
B.
t3=10
Answer
C.
t10=3
D.
t=3

Answer: Option B

Solution

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