Minimum and Maximum Operators

When the GCC extensions setting is on, the compiler recognizes built-in minimum ( <?) and maximum ( >?) operators.

Listing: Example of Minimum and Maximum Operators

int a = 1 <? 2; // 1 is assigned to a.
int b = 1 >? 2; // 2 is assigned to b.