Q70
What will be the output of the following C code? #include #define SYSTEM 20 int main() int a = 20; #if SYSTEM == a printf("HELLO "); #endif #if SYSTEM == 20 printf("WORLD "); #endif
A.
HELLO
B.
WORLD
AnswerC.
HELLO WORLD
D.
No Output
Answer: Option B
Solution
Answer: Option B
No explanation is given for this question Let's Discuss on Board