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
Why array is used in c?
What’s the special use of UNIONS?
What is the difference between array and pointer?
Can we add pointers together?
hai iam working in sap sd module for one year and working in lumax ind ltd in desp department but my problem is i have done m.b.a in hr/marketing and working sap sd there is any combination it. can you give right solution of my problem. and what can i do?
write a program to find the given number is prime or not
Which is the memory area not included in C program? give the reason
A global variable when referred to in another file is declared as this a) local variable b) external variable c) constant d) pointers
What are structure types in C?
What happens if a header file is included twice?
Can you please explain the difference between malloc() and calloc() function?
Why calloc is better than malloc?
What is static identifier?
hi... can anyone help me to make a two-dimensinal arrays in finding the sum of two elements plzzz. thnx a lot...
Write a code to achieve inter processor communication (mutual exclusion implementation pseudo code)?