Write a program to find largest of three numbers using ternary operators. 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) ;