What will be the output of the following code snippet?
Y = 5; if (! Y > 10) X = Y + 3; else X = Y + 10; printf(“ X = %d Y = %d”, X, Y);
Answer: A
No answer description available for this question.