To check the biggest number :
//Write a c program to demonstrate conditional operators or ternary operator :
#include<studio.h>
int main()
{
int a,b,larger;
printf("Enter two numbers\n");
scanf("%d %d",&a,&b);
larger=(a>b)?a:b;
printf("The result is %d",larger);
}
Learning C programming language from basics concept include with PROGRAMS:
https://kodewithgy.blogspot.com/2024/09/learning-c-programming-language-from.html