Advertisements
Advertisements
Question
if (a < b)
c = a;
else
c = b;
It can be written as:
Options
c = (b < a) ? a : b;
c = (a != b) ? a : b;
c = (a < b) ? b : a;
None
MCQ
Solution
None
Explanation:
Its correct representation using the ternary operator is:
c = (a < b) ? a : b
shaalaa.com
Is there an error in this question or solution?