Vidyalelo
C Programming · Q59

C Preprocessor

Programming · C Programming · question 59

Q59

What will be the output of the following C code? #include #define hello( n ) a##n int a3; int main() int x; x=hello(3); if(x!=0) printf("hi"); else printf("good");

A.
error
B.
a3
C.
good
Answer
D.
hi

Answer: Option C

Solution

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