Vidyalelo
C Programming · Q65

C Preprocessor

Programming · C Programming · question 65

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
Answer

Answer: Option D

Solution

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