write a c program to find biggest of 3 number without
relational operator?
Answer Posted / keerthana
include<stdio.h>
include<conio.h>
void main()
int a,b,c;
clrscr();
printf("enter the three values:")
scanf("%d%d%d",&a,&b,&c)
if(a>b&a>c);
{
printf("a is big")
}
else
if (b>a&b>c)
{
printf("b is big")
}
else
printf("c is big");
getch();
}
| Is This Answer Correct ? | 6 Yes | 19 No |
Post New Answer View All Answers
write a c program to do the following: a) To find the area of a triangle. b) To convert the temperature from Fahrenheit to Celsius. c) To convert the time in hours : minutes : seconds to seconds.
What is volatile, register definition in C
How can I do graphics in c?
Why is c called c not d or e?
Write a C program in Fibonacci series.
How can I make sure that my program is the only one accessing a file?
How can I read and write comma-delimited text?
What is the difference between int main and void main?
Explain how does flowchart help in writing a program?
Why dont c comments nest?
What oops means?
i have to apply for rbi before that i need to know the the syllabus for the entrance questions. whethet it may be aps or techinical
Apart from dennis ritchie who the other person who contributed in design of c language.
Difference between MAC vs. IP Addressing
What are dangling pointers? How are dangling pointers different from memory leaks?