What does the double ternary operator do

Report a typo

Given the following code with the ternary conditional operator.

int result = a > b ? (a > c ? a : c) : (b > c ? b : c);

What does this code do?

Select one option from the list
___

Create a free account to access the full topic