c program to find greatest of 3 numbers using conditional operator code example
Example: calculate max of three numbers using ternary operator in c
big = a > b ? ( a > c ? a : c) : (b > c ? b : c) ;
big = a > b ? ( a > c ? a : c) : (b > c ? b : c) ;