Q65
What will be the output of the following C code? #include #define display( n ) printf( "a" #n " = %d", a##n ) int main() display(3);
A.
a3
B.
31
C.
a 3
D.
error
AnswerAnswer: Option D
Solution
Answer: Option D
No explanation is given for this question Let's Discuss on Board