Vidyalelo
C Programming · Q80

C Preprocessor

Programming · C Programming · question 80

Q80

What will be the output of the following C code? #include #define ram 10 main() #ifdef ram #define ram 20 #endif printf("%d",ram);

A.
10
B.
20
Answer
C.
Error
D.
1020

Answer: Option B

Solution

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