calculate max of three numbers using ternary operator in c

C
big = a > b ? ( a > c ? a : c) : (b > c ? b : c) ;
Source

Also in C: