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...

find largest of 3 no

Answer Posted / udayakumarswamy

#include<stdio.h>
main()
{
int a,b,c;
clrscr();
if(a>b&&a>c)
{
printf("a is bigger than b and c");
}
else if(b>c)
{
printf(" b is bigger than a and c");
}
else
{
printf("c is bigger than a and b");
}
getch();
}

Is This Answer Correct ?    5 Yes 2 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

How can I read data from data files with particular formats?

1049


What does calloc stand for?

1168


What is a 'null pointer assignment' error?

1221


What is the sizeof () operator?

1088


What is Dynamic memory allocation in C? Name the dynamic allocation functions.

1418


Why isn't it being handled properly?

1070


What do you mean by invalid pointer arithmetic?

1080


Explain the concept and use of type void.

1119


You are to write your own versions of strcpy() and strlen (). Call them mystrcpy() and mystrlen(). Write them first as code within main(), not as functions, then, convert them to functions. You will pass two arrays to the function in the case of mystrcpy(), the source and target array.

2340


Difference between macros and inline functions? Can a function be forced as inline?

1278


What do the functions atoi(), itoa() and gcvt() do?

1196


What are c header files?

996


What is the advantage of c?

1132


Why doesnt the call scanf work?

1197


What is the condition that is applied with ?: Operator?

1134