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
what is the format specifier for printing a pointer value?
When should you not use a type cast?
Explain null pointer.
What is the scope of static variable in c?
Why are all header files not declared in every c program?
Why c is a procedural language?
How does #define work?
How can I determine whether a machines byte order is big-endian or little-endian?
How will you print TATA alone from TATA POWER using string copy and concate commands in C?
What is a ternary operator in c?
What is difference between scanf and gets?
What are structural members?
What is the modulus operator?
What are categories used for in c?
Why can't I perform arithmetic on a void* pointer?