write a c program to find biggest of 3 number without
relational operator?
Answer Posted / priyanka
#include<stdio.h>
#include<conio.h>
void main()
int a,b,c;
clrscr();
printf("enter any three no.s");
scanf("%d%d%d",&a,&b&c);
if(a>b&&a>c);
{
printf("a is biggest");
}
else if(b>a&&b>c)
{
printf("b is biggest");
}
else
printf("c is biggest");
getch();
}
| Is This Answer Correct ? | 52 Yes | 105 No |
Post New Answer View All Answers
Write a program to swap two numbers without using third variable?
What are the Advantages of using macro
Why we use break in c?
Which built-in library function can be used to match a patter from the string?
What is line in c preprocessor?
What is a structure and why it is used?
Why does this code crash?
Why functions are used in c?
Is a pointer a kind of array?
What is data structure in c programming?
If null and 0 are equivalent as null pointer constants, which should I use?
Explain the process of converting a Tree into a Binary Tree.
Can a pointer be null?
Explain how do you generate random numbers in c?
a parameter passed between a calling program and a called program a) variable b) constant c) argument d) all of the above