Report Bug
Qus : What is the result of the following code: int a = 10, b = 20; printf("%d", a > b ? a : b);
QusWhat is the result of the following code: int a = 10, b = 20; printf("%d", a > b ? a : b);

A. 10
B. 20
C. 0
D. None


Solution
B. 20






Report Bug