#include<stdio.h>
int main()
{
int a , b, max;
printf("Enter any two numbers\n");
scanf("%d %d", &a, &b);
max=a>b?a:b;
printf("the highest number is %d", max);
return 0;
}
highest number
0
0
omtajne11
code to find highest number among any two numbers using conditional operator
0 Comments
Add Comment
Log in to add a comment