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
What are the different types of control structures?
Can you return null in c?
In a switch statement, what will happen if a break statement is omitted?
Explain void pointer?
How many loops are there in c?
What is meant by keywords in c?
how to make a scientific calculater ?
What is scope and lifetime of a variable in c?
Explain what are bus errors, memory faults, and core dumps?
A c program to display count values from 0 to 100 and flash each digit for a secong.reset the counter after it reaches 100.use for loop,. pls guys hepl me.. :(
I need a sort of an approximate strcmp routine?
What are the key features in c programming language?
Explain what is wrong with this program statement? Void = 10;
What are the 5 data types?
What is structure in c explain with example?