Introducing Radical.sh

Forget Code launches a powerful code generator for building API's

Biggest of three number using conditional operator without user input in C

Conditional operators can be used to get biggest of three numbers, following numbers get without user input.
# include <stdio.h>
 
void main()
{
int a, b, c, big ;
a=10;
b=20;
c=7;
big = a > b ? (a > c ? a : c) : (b > c ? b : c) ;
printf("\nThe biggest number is : %d", big) ;
}