write a c program to print the larger of two numbers using conditional operator.
- Yatendra Awana
- Jul 21, 2021
- 1 min read
#include<stdio.h>
void main()
{
int a,b,max;
printf("Enter values for a and b :");
scanf("%d%d",&a,&b);
max = a>b ? a : b; /*ternary operator*/
printf("Larger of %d and %d is %d\n",a,b,max);
getch();
}
Comments