Tweet
C-language source code which gives the maximum between a, b, and c are as follows.
(a > b ? a > c ? a : c : b > c ? b : c)
Back