#include #if X == 3 #define Y 3 #else #define Y 5 #endif int main() { printf("%d", Y); return 0; }
What is the output of the above program?
Answer: B
No answer description available for this question.