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 / manish soni bca 3rd year jaipu

#include<stdio.h>
#include<conio.h>
void main()
{
int a,b,c,max;
printf("Enter any 3 no");
scanf("%d %d %d",&a,&b,&c);
max=a>b?(a>c?a:c):(b>c?b:c);
printf("%d",max);
getch();
}

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Write a program to print factorial of given number without using recursion?

1048


what is use of malloc and calloc?

1955


What tq means in chat?

1175


Is that possible to store 32768 in an int data type variable?

1139


write a program to create a sparse matrix using dynamic memory allocation.

4958


Explain what are reserved words?

1162


hi to every one .. how to view table pool after creating the pooled table? plz help me.. if any knows abt this ..

1963


How can I handle floating-point exceptions gracefully?

1247


What is string in c language?

1256


What is the difference between union and structure in c?

1283


Write the test cases for checking a variable having value in range -10.0 to +10.0?

2372


What is a constant?

1113


Explain modulus operator. What are the restrictions of a modulus operator?

1062


Explain logical errors? Compare with syntax errors.

1128


How can I discover how many arguments a function was actually called with?

1116