Q25 Write a c program to find the greatest of the three numbers entered through the keyboard. Use conditional operators.
Program: 93
Write a c program to find the greatest of the three numbers entered through the keyboard. Use conditional operators.
(expression_1 ? expression_2 : expression_3)
Output:
Enter 1st Number: 100 Enter 2nd Number: 2104 Enter 3rd Number: 82 Greatest Number is 2104