write a c program to find biggest of 3 number without
relational operator?
Answers were Sorted based on User's Feedback
Answer / 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 |
what is answer for perfect number????????????????
How to run c Program without using IDE of c. means if program made in notepad.then how to compile by command prompt.
consider the following C code main() { int i=3,x; while(i>0) { x=func(i); i--; } int func(int n) { static sum=0; sum=sum+n; return(sum); } the final value of x is
What is the difference between getch() and getche()?
What are types of structure?
How to print India by nested loop? I IN IND INDI INDIA
What is a macro?
Why static variable is used in c?
without using arithmatic operator convert an intger variable x into x+1
What is define directive?
What are the uses of null pointers?
How do I declare an array of N pointers to functions returning pointers to functions returning pointers to characters?