When the GCC extensions setting is on, the compiler recognizes built-in minimum ( <?) and maximum ( >?) operators.
int a = 1 <? 2; // 1 is assigned to a. int b = 1 >? 2; // 2 is assigned to b.