Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

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


Please Help Members By Posting Answers For Below Questions

Write a program to swap two numbers without using third variable?

1246


What are the Advantages of using macro

1111


Why we use break in c?

933


Which built-in library function can be used to match a patter from the string?

1235


What is line in c preprocessor?

992


What is a structure and why it is used?

1132


Why does this code crash?

1026


Why functions are used in c?

1066


Is a pointer a kind of array?

1111


What is data structure in c programming?

1027


If null and 0 are equivalent as null pointer constants, which should I use?

1116


Explain the process of converting a Tree into a Binary Tree.

2607


Can a pointer be null?

974


Explain how do you generate random numbers in c?

1040


a parameter passed between a calling program and a called program a) variable b) constant c) argument d) all of the above

1066