Write a C program to find maximum between three numbers using conditional operator. December 15, 2021 #include<stdio.h> //Write a C program to find maximum between three numbers using conditional operator. void main(){ int a; int b; scanf("%d %d",&a,&b); int c=(a>b)? a:((b>c)? b:c); printf("%d",c); } Read more