Write a program to find the greatest of the three numbers entered through the keyboard using conditional 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) ;